my ($price, $tax_rate) = split(/ /, <>);

my $total_price = int($price * (0.01 * $tax_rate + 1));

print "$total_price\n";