SAMER08F - Feynman

题意翻译

##### 这道题很简单,简化一下就是:n*n的正方形中有几个正方形。 ###### 输入:一串n,以0结束 ###### 输出:对于每个输入输出数量,答案间要换行

题目描述

Richard Phillips Feynman was a well known American physicist and a recipient of the Nobel Prize in Physics. He worked in theoretical physics and also pioneered the field of quantum computing. He visited South America for ten months, giving lectures and enjoying life in the tropics. He is also known for his books "Surely You're Joking, Mr. Feynman!" and "What Do You Care What Other People Think?", which include some of his adventures below the equator. His life-long addiction was solving and making puzzles, locks, and cyphers. Recently, an old farmer in South America, who was a host to the young physicist in 1949, found some papers and notes that is believed to have belonged to Feynman. Among notes about mesons and electromagnetism, there was a napkin where he wrote a simple puzzle: "how many different squares are there in a grid of _N_ ×_N_ squares?". In the same napkin there was a drawing which is reproduced below, showing that, for _N_=2, the answer is 5. ![subir imagenes](https://cdn.luogu.com.cn/upload/vjudge_pic/SP3410/d7ddd46455819aeffadaf7af88dd61ab81c440d7.png)

输入输出格式

输入格式


The input contains several test cases. Each test case is composed of a single line, containing only one integer _N_, representing the number of squares in each side of the grid (1 N The end of input is indicated by a line containing only one zero.

输出格式


For each test case in the input, your program must print a single line, containing the number of different squares for the corresponding input.

输入输出样例

输入样例 #1

2
1
8
0

输出样例 #1

5
1
204