Files

3 lines
80 B
Python

a,b,c = map(int, input().split())
print(int(a/(c-b)+1)) if c-b>0 else print(-1)