본문 바로가기
백준문제/브론즈 4

백준) 10769번 - python

by kiseno 2024. 4. 8.
728x90
반응형
SMALL
a = int(input())
b = int(input())
if a==2: print("Special" if b == 18 else "After" if b>18 else "Before")
else: print("Before" if a<2 else "After")
728x90
반응형
LIST

'백준문제 > 브론즈 4' 카테고리의 다른 글

백준) 10808번 - python  (0) 2024.04.11
백준) 10797번 - python  (0) 2024.04.10
백준) 10156번 - python  (0) 2024.04.07
백준) 10101번 - python  (0) 2024.04.06
백준) 10039번 - python  (0) 2024.04.05