A, B = map(int, input().split())
if (A > B):
print('>')
elif (A == B):
print('==')
else:
print('<')
9498번
python에는 switch/case문이 없다!
→ 대신 공식문서에서 if...elif 문을 권장
score = int(input())
if 100 >= score >= 90:
print('A')
elif 90 > score >= 80:
print('B')
elif 80 > score >= 70:
print('C')
elif 70 > score >= 60:
print('D')
else:
print('F')
https://www.bangseongbeom.com/python-switch-case.html
https://docs.python.org/3/faq/design.html#why-isn-t-there-a-switch-or-case-statement-in-python
year = int(input())
if (year%4 == 0) and (year%100 != 0):
print(1)
elif (year%400 == 0):
print(1)
else:
print(0)
14681번
입력을 한줄로 하는지, 엔터키로 나누는지 꼭 확인할 것
→ 이 부분을 잘못 처리하면 BOJ에서는 ValueError로 처리한다.
x = int(input())
y = int(input())
if x > 0:
if y > 0:
print(1)
else:
print(4)
else:
if y > 0:
print(2)
else:
print(3)