import sys


a,b= list(map(int,input().split()))
c=(b/a)*100
print("{0:.3f}%".format(c))