• Source
    1. /*
    2. ********************************************
    3. This code only for beginners. Please, Don't Copy Past
    4. ********************************************
    5. */
    6. #include<stdio.h>
    7. #include<math.h>
    8. #include<string.h>
    9. #include<stdlib.h>
    10. int main()
    11. {
    12.  
    13. int t=0,i,j=0,k=0;
    14. scanf("%d",&t);
    15.  
    16. while(t--){
    17. scanf("%d%d",&i, &k);
    18. if( i>k)
    19. printf(">\n");
    20. else if(i==k)
    21. printf("=\n");
    22. else
    23. printf("<\n");
    24. }
    25. return 0;
    26. }