m,t,s=map(int,input().split()) if m*t<=s: print(0) else: x=s/t if x==int(x): print(m-x) else: print((m-x)-1)