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

[백준/파이썬] 25828번  Corona Virus Testing

by 현장 2024. 2. 10.

-Code

g, p, t = map(int, input().split())

if g * p < g + p * t:
    print(1)
elif g * p > g + p * t:
    print(2)
else:
    print(0)