A,B,X = map(int, input().split()) ans = 0 now = 0 for i in range(10000): now += A ans += B if now >= X: break print(ans)