using System;
public class Program
{
public static void Main()
//A while statement that
int i = 1, n = 10;
while ( i < n )
i = i * 2;
}
//A trace of the loop when n has the value 10
Console.WriteLine(i);