import sys
A = int(sys.stdin.readline())
B = int(sys.stdin.readline())
if A > 0:
if B > 0:
print(1)
else:
print(4)
else:
if B > 0:
print(2)
else:
print(3)
'🐍 Python > 백준' 카테고리의 다른 글
[2525]오븐 시계 (0) | 2022.02.28 |
---|---|
[2884]알람 시계 (0) | 2022.02.26 |
[1330]두 수 비교하기 (0) | 2022.02.26 |
[10430]나머지 (0) | 2022.02.24 |
[10926]??! (0) | 2022.02.24 |