Dim wordcount as integer = 1
Dim sentencecount as integer
Console.writeline("Enter some text: ")
mytext= console.readline()
Console.writeline("Your text is: " & mytext)
Console.writeline("The total number of characters including spaces is : " & mytext.length)
For Each character in mytext
Console.writeline("The amount of words in your text are: " & wordcount)