DIM Weight, Length, Width, Price as Integer
console.writeline("Oversized Baggage Calculator")
Console.WriteLine("Enter Weight")
Weight = Console.ReadLine()
Console.WriteLine("Enter Length and Width (cm) respectively")
Length = Console.ReadLine()
Width = Console.ReadLine()
if Weight < 10 and Length <= 40 and Width <= 30 then
console.writeline("Price " & Price)
elseif Weight > 10 and Weight < 20 and Length > 40 and Length <= 60 and Width > 30 and Width <= 40 then
console.writeline("Price " & Price)
elseif Weight > 20 and Weight < 100 and Length <= 150 and Width <=150 then
console.writeline(Price & "£ Extra Charge")
console.WriteLine("Error: Not Allowed In The Flight")