using System; class Program { static void Main() { var a = 10; Console.WriteLine(-~a); // 11 Console.WriteLine(~-a); // 9 } }