Console.WriteLine("Enter Package weight (oz)")
weight = Console.ReadLine()
Console.WriteLine("Would you like to ship priority (P) or express (E)")
deliveryType = Console.ReadLine()
If deliveryType = "P" or deliveryType = "p" Then
ElseIf weight > 8 And weight <= 16 Then
cost = 7.95 + (weight - 16) * 0.3
ElseIf deliveryType = "E" or deliveryType = "e" Then
cost = Math.Ceiling(weight / 16) * 10.95
Console.WriteLine("Shipping Price: " & FormatCurrency(cost))