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