v,t,p = map(int,input().split()) a = (1+p)*v*t b = (t-1) ans = a//b if a%b!=0: ans+=1 print(ans)