#include int main(void){ int d; double p; scanf("%d%lf", &d, &p); d = d + (int)(d * p / 100); printf("%d", d); return 0; }