#abc178c. [abc178_c]Ubiquity

[abc178_c]Ubiquity

Problem Statement

How many integer sequences A1,A2,ldots,ANA_1,A_2,\\ldots,A_N of length NN satisfy all of the following conditions?

  • 0leqAileq90 \\leq A_i \\leq 9
  • There exists some ii such that Ai=0A_i=0 holds.
  • There exists some ii such that Ai=9A_i=9 holds.

The answer can be very large, so output it modulo 109+710^9 + 7.

Constraints

  • 1leqNleq1061 \\leq N \\leq 10^6
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer modulo 109+710^9 + 7.


Sample Input 1

2

Sample Output 1

2

Two sequences 0,9\\{0,9\\} and 9,0\\{9,0\\} satisfy all conditions.


Sample Input 2

1

Sample Output 2

0

Sample Input 3

869121

Sample Output 3

2511445