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