Console.writeline("Please enter the text you would like to submit to this program")
starttext = Console.ReadLine()
While choice <> 1 and choice <> 2
Console.writeline("Enter 1 to encode and enter 2 to decode")
choice = Console.ReadLine()
While movement < 1 And movement > 25
Console.WriteLine("Please enter a number between 1 and 25")
For n = 0 To starttext.Length - 1
letter = starttext.Chars(n)
If ascii >= 65 and ascii <= 90 then
If ascii = ascii + movement then
ascii = ascii + movement - 26
Console.writeline(ciphertext)