a, b = input().split() R = int(a)*3.14*int(b)**2 if 10000%R>0: print(int(10000//R+1)) else: print(10000/R)