fork(1) 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. }
  9. else if (a<b){
  10. printf("%d<%d",a,b);
  11. }
  12. else if (a==b) {
  13. printf("%d==%d",a,b);
  14. }
  15.  
  16.  
  17.  
  18.  
  19.  
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0.01s 5308KB
stdin
3 9
stdout
3<9