A, B, X = map(int, input().split()) count = 0 if X <= 12: X = 12 while X > 0: count += 1 X -= A print(count * B)