728x90
반응형

단순 구현 문제이다.

p = int(input())
q = int(input())
if p <= 50 and q <= 10:
    print("White")
elif q > 30:
    print("Red")
else:
    print("Yellow")
728x90
반응형

+ Recent posts