본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 20673번 Covid-19

by 현장 2022. 1. 15.

-코드

p = int(input())
q = int(input())
if p <= 50 and q >= 10:
    print('White')
elif q > 30:
    print('Red')
else:
    print('Yellow')