Codey and Symbol
https://www.hackerrank.com/contests/codenection-2024-final-round-open-category/challenges/cn24-4/problem
Last updated
https://www.hackerrank.com/contests/codenection-2024-final-round-open-category/challenges/cn24-4/problem
Last updated
5 6 2 8 4 1>a, b, c, d, e, f = map(int, input().strip().split())
lhs = a - (b / c)
rhs = (d / e) - f
if round(lhs, 4) > round(rhs, 4):
print(">")
elif round(rhs, 4) > round(lhs, 4):
print("<")
else:
print("=")