using System;
public class Program
{
public static void Main()
var x=0;
x = ++x;
Console.WriteLine(x);
x=0;
x = ++x + ++x;
x = ++x + ++x + ++x;
}