from decimal import * N, G, V = map(Decimal, input().split()) ans = N // 5 * G / V print(str(ans))