import math A, B, X = map(int, input().split()) # Tính số bộ cần mua (làm tròn lên) so_bo = math.ceil(X / A) tong_tien = so_bo * B print(tong_tien)