n = int(input())

ans=''

if n%2 and n>=3:
    n-=3
    ans += '7'

ans += '1'*(n//2)

print(ans)