python-algorithm

[백준] 16017

무적김두칠 2021. 3. 5. 15:54

1
2
3
4
5
6
7
8
9
10
a=int(input())
b=int(input())
c=int(input())
d=int(input())
chk=0
if a==8 or a==9:
    if d==8 or d==9:
        if b==c: chk=1
if chk==1print('ignore')
elseprint('answer')
cs
반응형