h, r = map(int, input().split(" "))
v = 3.14 * h * r * r 
if 10000 % v == 0:
    print(10000 / v)
else:
    print(int(10000 // v) + 1 )