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