N=int(input()) ans='' # 偶数のとき1をできるだけ並べる if N%2==0: ans+='1'*(N//2) # 奇数のとき先頭を7であとは1を並べる else: ans+='7' N-=3 ans+='1'*(N//2) print(ans)