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