n = int(input())
x = n*(n-1)//2+1
x = 2*x-1
l = [x+2*i for i in range(n)]
print("+".join(map(str,l)))