#P108. 练19.1  整数大小比较

练19.1  整数大小比较

Description

Input two integers and compare their sizes. If $x>y$, output >; if $x=y$, output =; if $x<y$, output <.

Input Format

One line containing two integers $x$ and $y$, separated by a single space.

Output Format

One character. If $x>y$, output >; if $x=y$, output =; if $x<y$, output <.

Sample

1000 100
>