n, a, b=map(int, input().split()) x=0 while n>0: x=x+1 n=n-a a=a+b print(x)