import sys input = sys.stdin.readline sys.setrecursionlimit(10**8) A, B, X = map(int, input().split()) print(((X + A - 1) // A) * B)