module main; import std; void main() { // 入力 long D, P; readln.chomp.formattedRead("%d %d", D, P); // 答えの計算と出力 writeln((D * (100 + P)) / 100); }