V, T, P = map(int, input().split()) ans = V * (P + 1) ans += (ans - 1) // (T - 1) + 1 print(ans)