#include<bits/stdc++.h> using namespace std; int main() { int h,r; cin>>h>>r; float v=h*3.1415926*r*r/1000; int s=ceil(20/v); cout<<s; return 0; }