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("%d<%d",a,b);
  8. }
  9. else if(a>b){
  10. printf("%d>%d",a,b);
  11. }
  12. else{
  13. printf("%d==%d",a,b);
  14. }
  15. // your code goes here
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5332KB
stdin
1 2
stdout
1<2