#描述#
一个整数的立方数,可以表示为连续奇数的和,例如:
3^3 = 7+9+11
4^3 = 13+15+17+19
请用编程的方法求出整数n(n≤20)所表示的连续奇数和。
#格式#
##输入格式##
##输出格式##
#样例1#
##样例输入1##
3
4
8
##样例输出1##
7+9+11
13+15+17+19
57+59+61+63+65+67+69+71
#限制#
1000ms
32768KB
#提示#
#来源#
By signing up a OPS universal account, you can submit code and join discussions in all online judging services provided by us.