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("a<b\n");
  8.  
  9. else if(a==b)
  10. printf("a=b\n");
  11.  
  12. else
  13. printf("a>b\n");
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 5284KB
stdin
5 8
stdout
a<b