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