import math P, Q = map(int, input().split()) temp_min = 1 temp_max = 10**12 temp = 0 while temp_max - temp_min > 0.000001: temp = (temp_max + temp_min) / 2 if temp ** 2 <= Q * temp * math.log2(temp) + P: temp_min = temp else: temp_max = temp print(temp)