https://www.acmicpc.net/problem/1330
1330번: 두 수 비교하기
두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오.
www.acmicpc.net
a,b = input().split()
a = int(a)
b = int(b)
if a>b :
print(">")
elif a<b:
print("<")
else:
print("==")
'OnlineJudge' 카테고리의 다른 글
Baek Joon Algorithm(백준 알고리즘): 2884번 (0) | 2019.08.27 |
---|---|
Baek Joon Algorithm(백준 알고리즘): 2753번 (0) | 2019.08.27 |
Baek Joon Algorithm(백준 알고리즘): 2588번 (0) | 2019.08.27 |
Baek Joon Algorithm(백준 알고리즘): 2439번 (0) | 2019.08.27 |
Baek Joon Algorithm(백준 알고리즘): 1008번 (0) | 2019.08.27 |