#include <stdio.h> int main() { int h,r,n; double v; scanf("%d %d",&h,&r); v = 3.14*h*r*r; n = (10000/v)+1; printf("%d",n); return 0; }