Imports System, Microsoft.VisualBasic
Console.WriteLine("Enter package weight")
Weight = Console.ReadLine()
Console.WriteLine("Enter (P) for Priority or (E) for Express: ")
time = Console.ReadLine()
If time = "P" or time = "p" Then
ElseIf Weight >8 And Weight <=16 Then
totalPrice = 7.95 + ((Weight - 16) * .30)
ElseIf time = "E" or time = "e" Then
totalPrice = 10.95 * (Math.Ceiling(Weight / 16))
Console.WriteLine("Shiping Price: " & FormatCurrency(totalPrice))