#547. 「Nowcoder多校 2019 Day1」Fraction Comparision
「Nowcoder多校 2019 Day1」Fraction Comparision
题目描述
Bobo has two fractions and . He wants to compare them. Find the result.
输入格式
The input consists of several test cases and is terminated by end-of-file.
Each test case contains four integers x, a, y, b.
- There are at most test cases.
输出格式
For each test case, print =
if . Print <
if . Print >
otherwise.
样例
样例输入
1 2 1 1
1 1 1 2
1 1 1 1
样例输出
<
>
=