using System;
public class Program
{
public static void Main(string[] args)
// What would be the output of this program
int i = 0;
Incrementor incrementor = new Incrementor();
incrementor.Id = i;
for (i = 0; i < 10; i++)
}
Console.WriteLine(incrementor.Id);
class Incrementor
public int Id {get; set;}