using System;
public class Program
{
public static void Main()
int a=2;
int b=3;
int z= b-a<< a--;
Console.WriteLine(z);
}