while True: try: n=int(input()) start = n*n-n+1 s = '' for i in range(0,n): s = s + str(start) + '+' start+=2 print(s.rstrip('+')) except: break