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