v,t,p=map(int,input().split()) ok=0 ng=10**20 while ng-ok>1: mid=(ng+ok)//2 m=mid-(0--(mid-1)//t) if m-p*v>v:ng=mid else:ok=mid print(ok)