#include<iostream> #include<cmath> using namespace std; int main() { int h,r; cin>>h>>r; float b=3.14159*r*r*h; cout<<ceil(20000/b); }