#include<iostream> #include<cmath> using namespace std; int main() { int h,r; cin>>h>>r; float one=h*r*r*3.14159265; int total=(ceil)(20000/one); cout<<total<<endl; return 0; }