+ 10 + You are welcome to work with a partner on the homework assignment OUT SUDITI only one me to the two of you when you submit your homework via the Google Form on the course website, you'll need to type both partners' names. . Part 1: Calculate the cost of a Purchase (10 points) A restaurant owner needs to buy some new items to run her business: employee uniforms ($50 apiece) tables ($600 apiece) chairs ($250 apiece) Due to a local tax provision, no sales tax must be paid on clothing, but furniture is still taxed at a rate of 6.75%. The shipping cost is S4 per item (uniform, table or chair). Shipping is not taxed. Assume that the number of uniforms to purchase is given in a variable named nun uniforms the number of tables in num_tables, and the number of chairs in num_chairs. Do not write any input statements! Write code that displays the total cost to purchase the uniforms, tables and chairs, taking into account the tax and shipping. You don't have to format your output as a monetary value. Some examples are given below. To try the sample inputs given in the table below, change the values of num_uniforms, num, tables and num_chaire in the starting code provided Inputs (uniforms, tables, chairs) Total Cost (output) 14, 10, 12 11, 20, 33 1779 10451.5 22152.0 7867.375 Hints to get you started if you are stuck CSE 101 Homework... MacBook , + tto + ** code provided. Inputs (uniforms, tables, chairs) Total Cost (output) 14, 10, 12 10451.5 11, 20, 32 22152.0 17, 7, 9 7867.375 Hints to get you started if you are stuck: Work through how you would solve this problem with paper and a calculator. What calculations would you perform? How can you compute the costs of the uniforms, tables and chairs (without tax)? . How can you compute the tax on the tables and chairs? How can you combute the total shipping cost? How can we add up all these various subtotals to get the final total? D] 1 * Change the first three values and see if you get the same answers as in the table above. 2 num_uniforms = 14 3 num tables - 10 4 num_chairs - 12 5 # Start your work by writing code below this line. Don't forget to print the total cost! Part 2: Compute the Basal Metabolic Rate (10 points) The basal metabolic rate (BMR) is the amount of energy (in kcal/day) expended by a person at rest in a temperate climate. This is esser the energy required each day by your bodily organs to function properly. The BMR is given by the following formula: CSE 101