using System;
public class Program
{
public static void Main()
//create a class that holds info on taffy - unique SKU, name, price
//each variety instatiated using the class
//allow user to enter type of taffy by SKU, quantity (# of sticks)
//print receipt indicating quantity, name, price - subtotal, total with 5% tax, grand total (including shipping.)
//shipping calc - flat $7 unless over $100 (after tax) then free.
Console.WriteLine("Please enter a username: ");
}