w.c 521 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. int main()
  2. {
  3. int a = 0;
  4. int b = 0;
  5. if (a > b)
  6. return 1;
  7. if (a < b)
  8. return 2;
  9. if (a != b)
  10. return 3;
  11. int c = 7;
  12. int d = 7;
  13. if (c > d)
  14. return 4;
  15. if (c < d)
  16. return 5;
  17. if (c != d)
  18. return 6;
  19. int x = 3;
  20. int y = 5;
  21. if (x == y)
  22. return 7;
  23. if (x >= y)
  24. return 8;
  25. if (y <= x)
  26. return 9;
  27. if (x > y)
  28. return 10;
  29. if (y < x)
  30. return 11;
  31. return 99;
  32. }
  33. void interrupt()
  34. {
  35. }