191-FALL 2026-UNIT 1- EXAM 1- DOCUMENT In the text bоx prоvided– write the entire c++ prоgrаm for the following progrаm specificаtions starting the line of #include statement KNOWN – INPUT VALUES Store name is Walmart (non-numeric) Commission rate is 9 (no decimal) Markup rate is 10 (no decimal) Deduction rate is 5 (no decimal) ====================================== INTERACTIVE INPUT VALUES Salesman last name (non-numeric) Yearly salary (no decimal value) No of items sold (no decimal value) Cost of item (decimal value) No of deductions (no decimal) =================================== CALCULATED VALUES (all will have decimal values) ** These ARE NOT in the CORRECT ORDER *** Commission amount is found by first dividing the commission rate by 100 then multiplying this by the revenue. Deduction amt is found by first multiplying the no of deductions by the deduction rate then dividing this by 100 and then multiplying this by the gross pay. Gross pay is found by first dividing the yearly salary by 12 then adding this to the commission amount. Item price is found by FIRST ADDING 1 to the markup rate then then dividing this by 100 and then finally Multiplying this by the item cost. Net pay is found by SUBTRACTING the deduction amount from the Gross pay. Revenue is found by multiplying the item price by the no of items. =================================================== OUTPUT REQUIREMENTS LINE 1: STORE NAME IS ____ LINE 2: SALESMAN NAME IS ___ LINE 3: COMMISSION AMT IS ____ LINE 3: DEDUCTION AMT IS _____ LINE 4: GROSS PAY IS _____ LINE 5: ITEM PRICE IS ____ LINE 6: NET PAY IS _____ LINE 7: REVENUE IS ____