Imports System, Microsoft.VisualBasic
Const TAX_RATE As Single = 0.06625
Dim cost, discount, subtotal, salesTax, finalCost As Single
Console.WriteLine("Enter total cost of items: ")
cost = Console.ReadLine()
subtotal = cost - discount
salesTax = subtotal * TAX_RATE
finalCost = subtotal + salesTax
Console.WriteLine("Discount: " & FormatCurrency(discount))
Console.WriteLine("Subtotal: " & FormatCurrency(subtotal))
Console.WriteLine("Sales tax: " & FormatCurrency(salesTax))
Console.WriteLine("Final cost: " & FormatCurrency(finalCost))