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