Integer
Public Module Program
Public Sub Main(args() As string)
Dim a as Integer = Console.ReadLine()
Dim b as Integer = Console.ReadLine()
Dim c as Integer = Console.ReadLine()
if(a>b AND a>c)Then
Console.WriteLine(a)
else if(b>c)Then
Console.WriteLine(b)
else
Console.WriteLine(c)
end if
End Sub
End Module