Fraction Comparision
题号:NC51089
时间限制:C/C++/Rust/Pascal 2秒,其他语言4秒
空间限制:C/C++/Rust/Pascal 512 M,其他语言1024 M
64bit IO Format: %lld

题目描述

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

输入

复制
1 2 1 1
1 1 1 2
1 1 1 1

输出

复制
<
>
=