import std.stdio; void main(){ int D, P; readf("%d %d", &D, &P); writeln( cast(int) (D * (100 + P) / 100) ); }