n,u,d=eval(input().replace(' ',',')) if d<u and n<100: t=(n-1)/(u-d)*2 if t%1==0: print(int(t)) else: t=int(t)+1 print(t)