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