fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(void)
  6. {
  7. int x, y;
  8. cin >> x >> y;
  9.  
  10. if (x > 0)
  11. {
  12. if (y > 0)
  13. cout << 1;
  14. else
  15. cout << 4;
  16. }
  17. else
  18. {
  19. if (y > 0)
  20. cout << 2;
  21. else
  22. cout << 3;
  23. }
  24. return 0;
  25. }
Success #stdin #stdout 0s 4384KB
stdin
12 5
stdout
1