#B2039. Compare Two Integers
Compare Two Integers
Compare Two Integers
Given two integers, compare them. If (x > y), output >
; if (x = y), output =
; if (x < y), output <
.
inputFormat
The input consists of two space-separated integers (x) and (y).
outputFormat
Output a single character: >
if (x > y), =
if (x = y), and <
if (x < y).
sample
3 2
>