using System;
public class Program
{
public static void Main()
int i = 10;
i *= i++ + --i * (i++ - ++i);
Console.WriteLine(i);
}