N = int(input()) if N%2 == 0: print('1'*(N//2)) else: a, b = divmod(N, 2) print('7'+'1'*(a//2))