cho.sh
Notes
Loading...

Compare Two Numbers

Time limit

1s

Memory limit

512 MB

Problem

Given two integers A and B, write a program that compares them and prints the correct symbol.

Input

The first line contains A and B separated by one space.

Output

Print exactly one of the following on the first line.

  • Print '>' if A is greater than B.
  • Print '<' if A is less than B.
  • Print '==' if A and B are equal.

Constraints

  • -10,000 <= A, B <= 10,000