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