A, B, C = map(int, input().split())

if A == 0 or B == 0 or C == 0:
    print(0)
else:
    print(A / (B / C))