def main(): N, G, V = map(int, input().split()) coins = N // 5 gas_weight = coins * G print(gas_weight / V) if __name__ == "__main__": main()