파이썬/백준

1712번 : 손익분기점

L_SU 2022. 9. 26. 20:08
a, b, c = map(int, input().split())
if c > b:
    print(int(a/(c-b)+1))
else:
    print(-1)