fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b;
  6. cin>>a>>b;
  7. if (a<=2 and b<=5)
  8. cout<<min(a,b);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5288KB
stdin
1 7
stdout
Standard output is empty