using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace strelka { class Program { static void Main(string[] args) { ushort gr = 0; gr=Convert.ToUInt16(Console.ReadLine()); gr *= 6; Console.Write(gr); } } }