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("a<b");
  10. }
  11. else if(a>b)
  12. {
  13. printf("a>b");
  14. }
  15. else
  16. {
  17. printf("a==b");
  18. }
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0.01s 5292KB
stdin
5 9
stdout
a<b