using System;
public class Program
{
public static void Main()
int i; //declares an integer variable called 'i'
for (i = 0; i < 11; i++) //starts the for loop using i, it starts at 0 and checks if i is smaller than 11, then increases i by 1
Console.WriteLine(i); //prints out the current value of i
}