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