#include int main() { float a, b; int c; scanf("%f %f", &a, &b); b =b / 100.0 + 1.0; c = (int)(a * b); printf("%d", c); return 0; }