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("==");
  9. }
  10. else if(a>b){
  11. printf(">");
  12. }
  13. else{
  14. printf("<");
  15. }
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
<