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