NETWORK & SEVER FACTORY

개인 공부 기록

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

'Study > BAEKJOON' 카테고리의 다른 글

[BAEKJOON] 2753 : 윤년 - python3  (0) 2021.08.04
[BAEKJOON] 9498 : 시험 성적 - python3  (0) 2021.08.04
[BAEKJOON] 2557 : Hello World - python3  (0) 2021.07.31
[BAEKJOON] 2577 : 숫자의 개수  (0) 2020.09.20
[BAEKJOON] 2562 : 최댓값  (0) 2020.09.19