#include<iostream> #include<cmath> using namespace std; int main() { double h,r; cin>>h>>r; cout<<ceil(10000/(3.14*h*r*r)); return 0; }