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