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