n=int(input())
if n%2==0:
    print('1'*(n//2))
else:
    if n==1:
        print(7)
    else:
        print('7'+'1'*((n-3)//2))