a,b = map(int,input().split()) # 用map函数来分别赋值给两个变量,然后用split() 利用输入的空格进行分割 print(f"{(b/a)*100:.3f}%") # format格式化,并保留三位小数。