Imports System, Microsoft.VisualBasic
Console.WriteLine("Enter Package weight (oz)")
weight = Console.Readline()
Console.WriteLine("Would you like to ship piority (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))