Dim no1, no2, no3 as Integer
Dim high, invalid as string
Console.Write("Enter No. 1: ")
Console.Write("Enter No. 2: ")
Console.Write("Enter No. 3: ")
if no1 >= no2 and no1 >= no3 then
elseif no2 >= no1 and no2 >= no3 then
elseif no3 >= no1 and no3 >= no2 then
Console.WriteLine("The Highest Num is: "& high)