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