n = int (input())

first = n * n - n + 1

s = [str(first + i * 2) for i in range(n)]

print("+".join(s))