728x90
반응형
단순 구현 문제이다.
p = int(input())
q = int(input())
if p <= 50 and q <= 10:
print("White")
elif q > 30:
print("Red")
else:
print("Yellow")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 1267번 핸드폰 요금(python) (0) | 2021.02.10 |
---|---|
백준 알고리즘 1247번 부호(python) (0) | 2021.02.10 |
백준 알고리즘 20499번 Darius님 한타 안 함?(python) (0) | 2021.02.10 |
백준 알고리즘 20215번 Cutting Corners(python) (0) | 2021.02.10 |
백준 알고리즘 20353번 Atrium(python) (0) | 2021.02.10 |