Imports Microsoft.VisualBasic Imports System.IO Module Guess Sub Main() Dim a, b As Integer Dim s(2) As String s = Console.ReadLine().Split() a = Int32.Parse(s(0)) b = Int32.Parse(s(1)) Console.WriteLine(a + b) End Sub End Module