Problem4512--胜率判断

4512: 胜率判断

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

甲在 lns="http://www.w3.org/1998/Math/MathML">b 次投篮中投中 lns="http://www.w3.org/1998/Math/MathML">a 次,乙在 lns="http://www.w3.org/1998/Math/MathML">y 次投篮中投中 lns="http://www.w3.org/1998/Math/MathML">x 次,请判断谁的胜率更高。

Input

  • 第一行:两个整数 lns="http://www.w3.org/1998/Math/MathML">a 与 lns="http://www.w3.org/1998/Math/MathML">b
  • 第二行:两个整数 lns="http://www.w3.org/1998/Math/MathML">x 与 lns="http://www.w3.org/1998/Math/MathML">y
  • lns="http://www.w3.org/1998/Math/MathML">1xy10000




Output

  • 如果甲的胜率更高,输出 >
  • 如果乙的胜率更高,输出 <
  • 如果两者胜率相同,输出 =

Sample Input Copy

1 2
3 6

Sample Output Copy

=

Source/Category