Untitled

mail@pastecode.io avatar
unknown
python
a year ago
106 B
2
Indexable
Never
A=int(input())
B=int(input())
if A<B:
    print("<")
if A>B:
    print(">")
if B==A:
    print("=")