v,t,p = map(int,input().split()) v*=p+1 a,b = 0,10**40 while b-a>1: c=(a+b)//2 if c-(c+t-1)//t<=v: a=c else: b=c print(a)