# frozen_string_literal: true def solve (T * V * (P + 1) - 1) / (T - 1) + 1 end V, T, P = gets.split.map(&:to_i) puts solve