V,T,P = map(int,input().split()) q = ((P+1)*V)//(T-1) r = ((P+1)*V)%(T-1) if r==0: ans = q*T else: ans = q*T+1+r print(ans)