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