#include <stdio.h>

int main() {
   int h,r;
   scanf("%d%d",&h,&r);
   int ans=10000/(3.14*h*r*r);
   printf("%d",ans+1);
    return 0;
}