while True: try: n = int(input()) res = '' for i in range(n*n-n+1, n*n+n+1, 2): #完全当成找规律来写了 res += str(i) + '+' print(res[:-1]) &nbs...