fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5.  
  6. int a;
  7. int b;
  8. scanf("%d",&a);
  9. scanf("%d",&b);
  10.  
  11.  
  12. if(a>b)
  13. printf("%d>%d",a,b);
  14. if(b>a)
  15. printf("%d<%d",a,b);
  16. else
  17. printf("%d==%d",a,b);
  18. return 0;
  19. }
  20.  
  21.  
Success #stdin #stdout 0.01s 5288KB
stdin
9
10
stdout
9<10