mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
18 lines
221 B
Python
18 lines
221 B
Python
def problem_p03547(input_data):
|
|
#!/usr/bin/env python3
|
|
|
|
# ABC78 A
|
|
|
|
x, y = list(input_data.split())
|
|
|
|
if x < y:
|
|
|
|
return "<"
|
|
|
|
elif x > y:
|
|
|
|
return ">"
|
|
|
|
elif x == y:
|
|
|
|
return "="
|