#include using namespace std; int main(void){ int D; double P, j; scanf("%d %lf", &D, &P); j = D * (P / 100 + 1); printf("%.0lf\n", j); return 0; }