Dim spaceIndex As Integer
Console.WriteLine("Enter full name: ")
fullName = Console.ReadLine()
fullName = fullName.ToLower()
spaceIndex = fullname.Indexof(" ")
firstName = fullName.Substring(0,spaceIndex)
lastName = fullName.Substring(spaceIndex + 1)
Console.WriteLine("First Name:" & firstName)
Console.WriteLine("Last Name:" & lastName)