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