반응형
문제 설명
https://www.acmicpc.net/problem/1330
제출한 코드
a,b = input().split()
a=int(a)
b=int(b)
if (a==b):
print("==")
elif (a>b):
print(">")
elif (a<b):
print("<")
결과

후기
반응형
'BQJ 백준 > python' 카테고리의 다른 글
[Python/파이썬] 백준 10675번: Cow Routing (0) | 2024.06.14 |
---|---|
[Python/파이썬] 백준 30306번: Better Dice (0) | 2024.06.13 |
[Python/파이썬] 백준 1316번: 그룹 단어 체커 (0) | 2024.06.11 |
[Python/파이썬] 백준 1271번: 엄청난 부자2 (0) | 2024.06.11 |
[Python/파이썬] 백준 1267번: 핸드폰 요금 (0) | 2024.06.09 |