a, b = map(float, input().split())
death_rate = (b / a) *100
print(f"{death_rate:.3f}%")