import sys

c,d=map(int, input().split())
if c == 0:
    print("错误:除数c不能为0!")
else:
    die = (d / c)*100
    print(f'{die:.3f}%')