#include<bits/stdc++.h> using namespace std; int main(){ int h,r; cin>>h>>r; double a=3.14*r*r*h; cout<<ceil(20000/a); return 0; }