print('商品の値段はD') D = int(input()) print('消費税はP') P = int(input()) print('税込み価格Xは') X = int(D + D * P / 100) print(int(X))