def main(): N, G, V = map(int, input().split()) gases = (N // 5) * G print(gases / V) main()