#include #include #define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++) using namespace atcoder; using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout << fixed << setprecision(12); ll p0, q0, p1, q1; cin >> p0 >> q0 >> p1 >> q1; string ans = "="; if (p0 * q1 > p1 * q0) ans = ">"; if (p0 * q1 < p1 * q0) ans = "<"; cout << ans << endl; }