def main(x, y, z): ans = x / y * z return ans if __name__ == '__main__': Y, W, H = [float(x) for x in input().split()] print(main(Y, W, H))