728x90
반응형
단순 구현 문제이다.
li = [int(input()) for _ in range(4)]
if li[0] in [8,9] and li[-1] in [8, 9] and li[1] == li[2]:
print("ignore")
else:
print("answer")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 16204번 카드 뽑기(python) (0) | 2021.02.08 |
---|---|
백준 알고리즘 16199번 나이 계산하기(python) (0) | 2021.02.08 |
백준 알고리즘 15963번 CASIO(python) (0) | 2021.02.08 |
백준 알고리즘 15921번 수찬은 마린보이야!!(python) (0) | 2021.02.08 |
백준 알고리즘 15873번 공백 없는 A+B(python) (0) | 2021.02.07 |