#abc198f. [abc198_f]Cube
[abc198_f]Cube
Problem Statement
Let us write a positive integer on each face of a cube. How many ways are there to do this so that the sum of the six numbers written is ?
Here, two ways to write numbers are not distinguished when they only differ by rotation. (Numbers have no direction.)
The count can be enormous, so find it modulo .
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the count modulo .
Sample Input 1
8
Sample Output 1
3
We have one way to write on the cube and two ways to write (one where we write on adjacent faces and another where we write on opposite faces), for a total of three ways.
Sample Input 2
9
Sample Output 2
5
Sample Input 3
50
Sample Output 3
80132
Sample Input 4
10000000000
Sample Output 4
2239716
Find the count modulo .