m = int(input())
ls = []
for i in range(m*m-m+1,m*m+m):
    if i%2 == 1:
        ls.append(i)
print('+'.join(map(str,ls)))