from decimal import * N, G, V = map(int, input().split(" ")) gas = (N // 5) * G print("{0:.12f}".format(Decimal(gas)/Decimal(V)))