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