a,b,x = map(int,input().split()) che = divmod(x,a) if che[1] > 0: print(b * (che[0] + 1)) else: print(b * che[0])