python-algorithm

[백준] 10768

무적김두칠 2020. 12. 16. 10:03

1
2
3
4
5
6
7
8
9
a=int(input())
b=int(input())
 
if a==1print("Before")
if a>2print("After")
if a==2:
    if b==18print("Special")
    if b>18:print("After")
    if b<18 : print("Before")
cs

 

반응형