let inpt = readLine()!.split(separator: " ").map({Int($0)!}) let gus = (inpt[0] / 5) * inpt[1] let ans = Double(gus) / Double(inpt[2]) print(ans)