#Z13105. 整数大小比较

整数大小比较

Description

Input two integers and compare their sizes.

Input Format

The input consists of one line containing two integers x and y, separated by a single space. 0x<2320≤x<2^{32}, 231y<231-2^{31}≤y<2^{31}.

Output Format

Output a single character:

  • If x > y, output >;
  • If x = y, output =;
  • If x < y, output <;
1000 100

>

Hint

2^32^ = 4294967296

(Note: The original text was already in English, so no translation was needed. The content remains exactly the same while preserving the markdown formatting.)