找呀找规律

import sys

m=int(input())
a= m*(m-1)+1
i=1
b=''
while i < m:
    b+=str(a)+'+'
    a+=2
    i+=1
b+=str(a)
print(b)