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