console.WriteLine("this is equal to 10!")
console.WriteLine("this is greater than 10")
console.WriteLine("this is less than 10")
console.WriteLine("- Your number is odd")
console.WriteLine("- Your number is even")
console.WriteLine("First number biggest")
console.WriteLine("Second number biggest")
If n1 >= 0 and n2 >= 0 then
Console.WriteLine("Both numbers positive")
elseif n1 >= 0 AND n2 < 0 then
Console.WriteLine("First number positive, second number negative")
Console.WriteLine("Both numbers negative")