🏡 index : github.com/captn3m0/codechef.git

---
category_name: school
problem_code: CHOPRT
problem_name: 'Chef And Operators'
languages_supported:
    - ADA
    - ASM
    - BASH
    - BF
    - C
    - 'C99 strict'
    - CAML
    - CLOJ
    - CLPS
    - 'CPP 4.3.2'
    - 'CPP 4.9.2'
    - CPP14
    - CS2
    - D
    - ERL
    - FORT
    - FS
    - GO
    - HASK
    - ICK
    - ICON
    - JAVA
    - JS
    - 'LISP clisp'
    - 'LISP sbcl'
    - LUA
    - NEM
    - NICE
    - NODEJS
    - 'PAS fpc'
    - 'PAS gpc'
    - PERL
    - PERL6
    - PHP
    - PIKE
    - PRLG
    - PYPY
    - PYTH
    - 'PYTH 3.4'
    - RUBY
    - SCALA
    - 'SCM chicken'
    - 'SCM guile'
    - 'SCM qobi'
    - ST
    - TCL
    - TEXT
    - WSPC
max_timelimit: '1'
source_sizelimit: '50000'
problem_author: vicky002
problem_tester: null
date_added: 6-09-2015
tags:
    - vicky002
time:
    view_start_date: 1441555662
    submit_start_date: 1441555662
    visible_start_date: 1420050600
    end_date: 1735669800
    current: 1492507602
layout: problem
---
All submissions for this problem are available.Chef has just started Programming, he is in first year of Engineering. Chef is reading about Relational Operators. 

Relational Operators are operators which check relatioship between two values. Given two numerical values **A** and **B** you need to help chef in finding the relationship between them that is, 
/>/>

3. First one is greater than second or,
4. First one is less than second or,
5. 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

11. 1 ≤ **T** ≤ 10000
12. 1 ≤ **A**, **B** ≤ 1000000001
### Example

<pre><b>Input:</b>
3
10 20
20 10
10 10

<b>Output:</b>


=
</pre>### Explanation

**Example case 1.** In this example 1 as 10 is lesser than 20.