Imports System
Public Module Module1
Public Sub Main()
console.WriteLine("enter your sentence")
dim x as string = console.ReadLine()
console.Write("your sentence {0}",x)
console.Write(" has the length of {0} characters",x.length)
End sub
End Module