using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukicoder_83 { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int ans = 0; int keta = n / 2; for (int i = 0; i < keta; i++) { ans += (int)Math.Pow(10, i); } if (n % 2 == 1) ans += 6 * (int)Math.Pow(10, keta - 1); Console.WriteLine(ans); Console.ReadLine(); } } }