Algorithm


problem Link :  https://www.codechef.com/problems/CHOPRT 

Problem

Chef has just started Programming, he is in first year of Engineering. Chef is reading about Relational Operators.
Relational Operators are operators which check relationship between two values. Given two numerical values A and B you need to help chef in finding the relationship between them that is,

First one is greater than second or, First one is less than second or, First and second one are equal.

 

Input

First line contains an integer T, which denotes the number of testcases. Each of the T lines contain two integers A and B.

Output

For each line of input produce one line of output. This line contains any one of the relational operators
'<' , '>' , '='.

Constraints

 

1 ≤ T ≤ 10000 1 ≤ AB ≤ 1000000001

Sample 1:

Input
 
Output
 
3
10 20
20 10
10 10
<
>
=

Explanation:

In this example 1 as 10 is lesser than 20

Code Examples

#1 Code Example with C Programming

Code - C Programming

#include<stdio.h>
int main()
{
    int n,a,b;
    scanf("%d",&n);
    while(n--)
    {
        scanf("%d %d",&a,&b);
        if(a<b) printf(" < \n">;
        else if(a>b) printf(">\n");
        else if(a=b) printf("=\n");
    }
} 
Copy The Code & Try With Live Editor

Input

x
+
cmd
3
10 20
20 10
10 10

Output

x
+
cmd
<
> =
Advertisements

Demonstration


CodeChef  solution CHOPRT  - Chef And Operators Codechef  solution in C,C++

Previous
CodeChef solution CFLOW013 - Valid Triangles Codechef solution in C,C++
Next
CodeChef solution LUCKFOUR - Lucky Four Codechef solution in Codechef solution in C,C++