Problem A: Branch on Condition - Small, Large, or Equal

"
Time Limit $1$ 秒/Second(s) Memory Limit $512$ 兆字节/Megabyte(s)
提交总数 $2170$ 正确数量 $664$
裁判形式 标准裁判/Standard Judge 我的状态 尚未尝试
难度 分类标签 模拟 分支

Small, Large, or Equal 

Write a program which prints small/large/equal relation of given two integers a and b.

Two integers a and b separated by a single space are given in a line.

For given two integers a and b, print 

   a < b 

  if a is less than b, 

   a > b 

  if a is greater than b, and 

   a == b 

  if a equals to b.

1 2
a < b
-1000 ≤ a, b ≤ 1000