from decimal import * N, G, V = [int(i) for i in input().split()] ans = Decimal(N) // 5 * Decimal(G) / Decimal(V) getcontext().prec = 15 print(ans)