V, T, P = gets.split(" ").map{|s| s.to_i} d = (P + 1) * V * T / (T - 1) r = (P + 1) * V * T % (T - 1) d += 1 if r != 0 puts d