반응형
https://www.acmicpc.net/problem/1330
# @Author YoungMinKim
# baekjoon
a,b = map(int,input().split())
if a>b:
print('>')
elif a<b:
print('<')
else:
print('==')
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 1417 (0) | 2020.08.21 |
---|---|
baekjoon - python - 1373 (0) | 2020.08.21 |
baekjoon - python - 1237 (0) | 2020.08.21 |
baekjoon - python - 1212 (0) | 2020.08.21 |
baekjoon - python - 1157 (0) | 2020.08.21 |
댓글