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