Small, Large, or Equal
Write a program which prints small/large/equal relation of given two integers a and b.
Time Limit | $1$ 秒/Second(s) | Memory Limit | $512$ 兆字节/Megabyte(s) |
提交总数 | $2845$ | 正确数量 | $746$ | "
裁判形式 | 标准裁判/Standard Judge | 我的状态 | 尚未尝试 |
难度 | 分类标签 | 模拟 分支 |
Small, Large, or Equal
Write a program which prints small/large/equal relation of given two integers a and b.
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