初中英格力士阅读
题号:NC250844
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld

题目描述

Two integers a,b are given. Please determine which one is bigger (or report that they are equal).

Hint one : this problem can be a problem of Nowcodet April Fools Contest, but can't be a problem of Codeforces April Fools Contest for some reasons.    

Hint tow : k turns to ceo.

Hint three: The problem-setter of this problem is careful so he absolutely makes no stupid typo.

输入描述:

The first line contains a positice integer T(1\leq T\leq 10201), the number of test cases.

For each test case, two integers a,b(0\leq a,b\leq 100) are given.

输出描述:

If a is bigger, output ">" (without quotes).

If b is bigger, output "<" (without quotes).

Otherwise, output "=" (without quotes).
示例1

输入

复制
5
1 1
0 100
10 3
21 4
100 32

输出

复制
=
>
<
=
=

说明

For the first sample: everyone having their kindergarten finished knows they are equal.

For the second sample: apparently, 0 is the biggest number in all possible input.

For the third sample: it's not hard to see, 3 is bigger.

For the last two samples: why are they equal?