#include <stdio.h>
#define PI 3.14
int main() {
    int a, b;
    scanf("%d %d",&a,&b);
    printf("%d",(int)(10000/(PI*a*b*b))+1);
    return 0;
}