#include <iostream> using namespace std; int main(){ int h,r,v,a; cin>>h>>r; v=3.14*r*r*h; a=20000/v; if(20000%v!=0){ cout<<a+1<<endl; } }