//Shakiah James 10/19
//FlowChart1.cs
using System;
public class Program
{
public static void Main()
int i = 1; //intializing i to 1
while (i <= 2)
Console.WriteLine("{0}", i); //print value of i
i = i + 1; //assign int i to i + 1
}
Console.WriteLine("Press ENTER to exit..."); //prompting the user to press enter to exit
Console.ReadLine(); //console accepts input
//end of program