import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); //マッチ棒の本数 /*偶数なら1を並べるだけ,奇数なら最大の位に7 */ String str=""; if(N%2!=0){ str="7"; N -= 2; } int num = N/2; //1の個数 for(int i=0; i