Score : $400$ points
Given is an integer $S$. Find how many sequences there are whose terms are all integers greater than or equal to $3$, and whose sum is equal to $S$. The answer can be very large, so output it modulo $10^9 + 7$.
Input is given from Standard Input in the following format:
$S$
Print the answer.
7
3
$3$ sequences satisfy the condition: $\{3,4\}$, $\{4,3\}$ and $\{7\}$.
2
0
There are no sequences that satisfy the condition.
1729
294867501