using System; class Foo { public static void Main(string[] args) { int x = 2; x += x++ * x++ * x++; Console.Write(x); } }