#include int main() { int D; //消費税を含まない品物の金額 int P; //この国の消費税率 scanf("%d%d",&D,&P); printf("%d\n",D+(D*P/100));//消費税:(D*P/100)) return 0; }