Click Here to see the problem detail.

Solution

There is nothing to explain. See source code.

Source Code
#include<stdio.h>
int main()
{
    int testCase,a,b;
    scanf("%d",&testCase);
    while(testCase--)
    {
 
        scanf("%d%d",&a,&b);
        if(a>b)
            printf(">\n");
        else if(a<b)
            printf("<\n");
        else
            printf("=\n");
 
    }
    return 0;
}

 


Next Previous