PROGRAMMING:Integer size comparison
###Task description
Enter two integers and compare their sizes.
###Input format:
A line containing two integers x and Y separated by a single space.
Where $$0 / Le X / le 2 ^ {32} - 1, - 2 ^ {31} - Le Y / le 2 ^ {31} - 1 $$.
###Output format:
One character.
If x > y, output >;
If x = y, output =;
If x < y, output <;
###Input example:
```in
1000 100
```
###Output example:
```out
>
```
###Title Source
This topic is selected from openjudge website http://noi.openjudge.cn/ch0104/05/ .
answer:If there is no answer, please comment
Enter two integers and compare their sizes.
###Input format:
A line containing two integers x and Y separated by a single space.
Where $$0 / Le X / le 2 ^ {32} - 1, - 2 ^ {31} - Le Y / le 2 ^ {31} - 1 $$.
###Output format:
One character.
If x > y, output >;
If x = y, output =;
If x < y, output <;
###Input example:
```in
1000 100
```
###Output example:
```out
>
```
###Title Source
This topic is selected from openjudge website http://noi.openjudge.cn/ch0104/05/ .
answer:If there is no answer, please comment