using System;
public class Program
{
public static void Main()
var i = 0;
i += i++;
Console.WriteLine("Value of i: {0}", i);
}