from sys import stdin def main(): #入力 readline=stdin.readline a,b,c=map(int,readline().split()) print(a/b*c) if __name__=="__main__": main()