import std.algorithm, std.array, std.range; import std.string, std.conv; import std.math; import std.stdio, std.typecons; void main() { auto rd = readln.split.map!(to!int); auto d = rd[0]; auto p = rd[1]; auto t = d * p / 100; writeln(d + t); }