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