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