fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int min(int a, int b){
  5. if (a > b) return b;
  6. return a;
  7. }
  8.  
  9. int main() {
  10. // your code goes here
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Standard output is empty