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