import sys

for line in sys.stdin:
    c,d = line.split()
    r = float(int(d)/int(c))
    print(f"{r:.3%}")