Imports System, Microsoft.VisualBasic
Dim pricePerCopy As Single
Console.WriteLine("Please enter the amount of copies purchased")
copies = Console.ReadLine()
total = copies * pricePerCopy
Console.WriteLine("Your price is " & FormatCurrency(pricePerCopy))
Console.WriteLine("The total price is " & FormatCurrency(total))