https://www.acmicpc.net/problem/1712
a,b,c=map(int,input().split()) n=c-b if n<=0: print(-1) else: print(a//n+1)