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