20673번 풀이 [Python]

sua·2022년 7월 24일
0

Baekjoon

목록 보기
94/161
post-thumbnail

문제


풀이

a = int(input())
b = int(input())
if a <= 50 and b <= 10:
    print("White")
elif b > 30:
    print("Red")
else:
    print("Yellow")
profile
가보자고

0개의 댓글