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