using System; using System.Collections.Generic; using System.Linq; namespace Test { class Program { static void Main(string[] args) { int l = int.Parse(Console.ReadLine()); long ret = 1; for (int i = 3; i < l; i++) ret *= 2; int n = int.Parse(Console.ReadLine()); Console.WriteLine(ret * n); } } }