console.WriteLine("Please enter the weight of the package")
weight= Console.ReadLine()
Console.writeline("Please enter the Length of the package")
length= console.ReadLine()
console.WriteLine("please enter the width of the package")
width= Console.ReadLine()
console.WriteLine("Please enter the Height of the package")
Volume = length * Width * height
Status = "rejected: the package is too heavy"
elseif length <= 100000 then
status = "package accepted"
status = "the package is too large"
elseif height >= 27 and 100000 then
status = "rejected: the package is too large and heavy"
console.WriteLine(Status)