using System; using System.Linq; using System.Collections.Generic; using System.Text.RegularExpressions; class Program { static void Main() { /* * 0 : 6 * 1 : 2 * 2 : 5 * 3 : 5 * 4 : 4 * 5 : 5 * 6 : 6 * 7 : 3 * 8 : 7 * 9 : 6 */ var N = int.Parse(Console.ReadLine()); var _ansList = new List(); while(N != 0) { if (N % 2 == 0) { N = N - 2; _ansList.Add(1); } else { N = N - 3; _ansList.Add(7); } } Console.WriteLine(String.Join("",_ansList)); } }