10768번 풀이 [Python]

sua·2022년 6월 3일
0

Baekjoon

목록 보기
44/161
post-thumbnail

문제


풀이

a = int(input())
b = int(input())

if a < 2:
    print("Before")    
elif a == 2:
    if b == 18: 
        print("Special")
    elif b > 18: 
        print("After")
    else: 
        print("Before")        
else: 
    print("After")
profile
가보자고

0개의 댓글