fork download
  1. #include <iostream>
  2. #include"math.h"
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7.  
  8. int a=0;
  9. int b=0;
  10. scanf("%d",&a);
  11. scanf("%d",&b);
  12. char c;
  13.  
  14. if(a>b)
  15. {
  16. c='>';
  17.  
  18. }
  19. if(a<b)
  20. {
  21. c='<';
  22. }
  23. if(a==b)
  24. {
  25. c='=';
  26. }
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64. printf("%c\n",c);
  65. return 0;
  66. }
Success #stdin #stdout 0s 5316KB
stdin




stdout
=