Study/BAEKJOON

[BAEKJOON] 1330 : 두 수 비교하기 - python3

1nfra 2021. 8. 3. 21:07
728x90

1
2
3
4
5
6
7
8
9
10
11
12
A,B = input().split()
= int(A)
= int(B)
if ( A <= -10000 or A >= 10000 or B <= -10000 or B >= 10000):
    exit()
elif A>B:
     print(">")
elif A<B:
     print("<")
elif A==B:
    print("==")
 
cs
728x90