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