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