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