Imports System
Public Module Module1
Public Sub Main()
dim x = "Welcome to RSS"
dim y = x.Substring(0,7)
Console.WriteLine(y)
End Sub
End Module