import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; //No.56 消費税 public class ConsumptionTax { public static void main(String[] args) throws IOException { // TODO 自動生成されたメソッド・スタブ //入力された価格 int price; //消費税率 int taxrate; //入力値 String input; //実際の価格 int realPrice; //消費税額 double taxPrice; BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); input = in.readLine(); //入力値を分割してpriceとtaxrateに格納する。 String[] temp = input.split(" "); price = Integer.parseInt(temp[0]); taxrate = Integer.parseInt(temp[1]); //消費税額を計算 taxPrice = Math.floor((taxrate * 0.01) * price); //実際の価格を計算 realPrice = price + (int)taxPrice; System.out.println(realPrice); } }