Architgupta001 / Hacktoberfest-2021

15 stars 127 forks source link

CSES - Dice Combinations #243

Open karankc23 opened 3 years ago

karankc23 commented 3 years ago

Your task is to count the number of ways to construct sum n by throwing a dice one or more times. Each throw produces an outcome between 1 and 6.

For example, if n=3, there are 4 ways: 1+1+1 1+2 2+1 3 Input

The only input line has an integer n.

Output

Print the number of ways modulo 10^9+7.

Constraints 1≤n≤106 Example

Input: 3

Output: 4

karankc23 commented 3 years ago

please assign me this issue in c++ language