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