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

[백준/파이썬] 27566번 Blueberry Waffle

by 현장 2024. 10. 23.

-Code

r, f = map(int, input().split())
res = round(f / r) % 2
print("up" if res == 0 else "down")