Problem Statement
Maria went to the grocery store and bought several items. She needs to calculate the total cost of her purchase including tax.
Write a program that reads the subtotal amount and tax rate, then calculates and displays the final total cost.
The formula is: Total = Subtotal + (Subtotal ร Tax Rate)
For example, if the subtotal is $25.50 and the tax rate is 0.08 (8%), the total would be $25.50 + ($25.50 ร 0.08) = $25.50 + $2.04 = $27.54.