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