Imports System
Public Module Module1
Public Sub Main()
dim a,b as integer
console.WriteLine("enter 1 or 0")
a=console.ReadLine()
b=console.ReadLine()
if a=1 and b=0
console.writeline("your output is 0")
elseif a=1 and b=0
console.WriteLine("yor output is 0")
elseif a=1 and b=1
console.WriteLine("your output is 1")
end if
End Sub
End Module