def main(): N, G, V = map(int, input().split()) count_5 = N // 5 total_gas = G * count_5 print(total_gas/V) if __name__ == '__main__': main()