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("%d<%d",a,b);
  8. else if (a>b)
  9. printf("%d>%d",a,b);
  10. else
  11. printf("%d==%d",a,b);
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5276KB
stdin
9
9
stdout
9==9