a,b,x=map(int,input().split()) if x%a==0: print(x*b/a) else: print(((x//a)+1)*b)