So sánh

View as PDF

Submit solution

Points: 0.01
Time limit: 1.0s
Memory limit: 64M
Input: stdin
Output: stdout

Authors:
Problem type

Cho 2 số nguyên a,b (Với 1≤a,b≤10000). Hãy so sánh 2 số đó. Nếu a lớn hơn b thì ta xuất ra ">". Nếu b lớn hơn a ta xuất ra "<". Nếu a bằng b ta xuất ra "=".

Input

Dòng đầu tiên có chứa 2 số nguyên a,b (Với 1≤a,b≤10000).

Output

Một dòng duy nhất là 1 kí tự trong 3 kí tự sau: ">", "<" và "=".

Simple Input 1

1 1

Simple Output 1

=

Simple Input 2

3 1

Simple Output 2

>


Comments

Please read the guidelines before commenting.


There are no comments at the moment.