def Main(): a,b,x=map(int,input().split()) print((x+a-1)//a*b) Main()