A,B,X = map(int, input().split(' ')) ans = (X//A + (1 if X%A >0 else 0)) * B print(ans)