#include<iostream> using namespace std; int main(){ double v; int r,h,n; cin>>h>>r; v=3.1415926*r*r*h; n=20*1000/v; cout<<n+1; return 0; }