Skip to content

Instantly share code, notes, and snippets.

@whatalnk
Created December 10, 2017 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whatalnk/6486ad9ef4316cea33f833f30740a3c5 to your computer and use it in GitHub Desktop.
Save whatalnk/6486ad9ef4316cea33f833f30740a3c5 to your computer and use it in GitHub Desktop.
AtCoder ABC #078
x, y = input().split(" ")
if x < y:
print("<")
elif x == y:
print("=")
else:
print(">")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment