<?php $line = trim(fgets(STDIN)); $arr = explode(" ", $line); $tax = $arr[1] / 100; echo floor($arr[0] + $arr[0] * $tax); ?>