N, G, V = map(int,input().split()) n = N // 5 g = G * n ans = g / V if ans - (g // V) == 0: ans = int(ans) print(ans)