from decimal import * getcontext().prec = 30 N, G, V = tuple(Decimal(i) for i in input().split()) print((N // 5) * G / V)