백준 10768번: 특별한 날 #Python

ColorlessDia·2024년 3월 5일

algorithm/baekjoon

목록 보기
105/812
month = int(input())
date = int(input())

if month == 2 and date == 18:
    print('Special')
elif (month == 2 and date < 18) or month < 2:
    print('Before')
else:
    print('After')

0개의 댓글