https://www.acmicpc.net/problem/10768
풀이
# 10768번 특별한 날
m = int(input())
d= int(input())
if [m, d] > [2, 18]:
print("After")
elif [m, d] == [2, 18]:
print("Special")
else:
print("Before")
출력결과
'백준 > 구현' 카테고리의 다른 글
[백준][Python] 10156번 과자 - 코팩 (0) | 2022.09.23 |
---|---|
[백준][Python] 14623번 감정이입 - 코팩 (0) | 2022.09.22 |
[백준][Python] 10250번 ACM호텔 - 코팩 (1) | 2022.09.20 |
[백준][Python] 10797번 10부제 - 코팩 (0) | 2022.09.20 |
[백준][Python] 25305번 커트라인 - 코팩 (0) | 2022.09.14 |