# No.379 五円硬貨 from decimal import Decimal n, g, v = [Decimal(i) for i in input().split()] print('{:.15f}'.format((n // 5) * g / v))