#Lutece0927. Dart game

Dart game

Migrated from Lutece 927 Dart game

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Darts originated in Australia. Australia's aborigines initially for hunting and hit the enemy's weapon.

A game of darts in which the players attempt to score points by throwing the darts at a target.

title

Darts movement rules of the game is very simple, the target is 11-2020 points and the central circle is 5050 small zoning, edge is 2525 division, the rough circle line of fan-shaped covered area is 11-2020 points and three times the corresponding division. This game is generally played by two people but can be played by teams. Each player starts with N points. The goal for each player is to reach zero by subtracting the amount they score from the amount they had left,but final throwing must be double division. And the first to reduce his/her score to zero wins.

So the task is :

Given a dart scores NN that a player starts with, you are required to calculate how many different ways to reach zero. One is different way to another means at least one dart hits different division.Ways which have different orders and same divisions are the same way. For example,if N=4N=4,there are 44 different ways reach to zero:the first is double 22, the second is 22 and double 11, the third is twice of double 11,the fourth is twice of 11 and double 11 .

The answer may be very large,you have to module it by 20112011.

Input

The input contains several test cases.

Each test case contains an integer N(0<N1001)N ( 0 < N \leq 1001 ) in a line.

N=0N=0 means end of input and need not to process.

Output

For each test case, output how many different ways to reach zero.

Samples

5
4
3
2
1
0
6
4
1
1
0

Note

5=1+1×2+1×25=1+1 \times 2+1 \times 2

5=1+1+1+1×25=1+1+1+1 \times 2

5=3+1×25=3+1 \times 2

5=1×3+1×25=1 \times 3+1 \times 2

5=1+2+1×25=1+2+1 \times 2

5=1+2×25=1+2 \times 2

4=2×24=2 \times 2

4=1+1+1×24=1+1+1 \times 2

4=2+1×24=2+1 \times 2

4=1×2+1×24=1 \times 2+1 \times 2

3=1+1×23=1+1 \times 2

2=1×22=1 \times 2

11: no way

Resources

2011 Heilongjiang collegiate programming contest