a = input().lower() b = input().lower() if a == b: print("=") elif a > b: print(">") else: print("<")