using System; public class Program { static void Main() { int Length = int.Parse(Console.ReadLine()); int Pat = int.Parse(Console.ReadLine()); long koho = (long)Math.Pow(2,Length - 3) * Pat; Console.WriteLine(koho); } }