#define _CRT_SECURE_NO_WARNINGS #include int main(void) { double D, P; scanf("%lf %lf", &D, &P); printf("%.0f\n", (D / 100) * (100 + P)); return 0; }