<?php $n = trim(fgets(STDIN)); $ans = implode(array_fill(0, $n % 2 ? ($n - 3) / 2 : $n / 2, '1')); echo $n % 2 ? '7' . $ans : $ans; ?>