#abc140a. [abc140_a]Password

[abc140_a]Password

Problem Statement

Takahashi is going to set a 33-character password.

How many possible passwords are there if each of its characters must be a digit between 11 and NN (inclusive)?

Constraints

  • 1leqNleq91 \\leq N \\leq 9
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the number of possible passwords.


Sample Input 1

2

Sample Output 1

8

There are eight possible passwords: 111, 112, 121, 122, 211, 212, 221, and 222.


Sample Input 2

1

Sample Output 2

1

There is only one possible password if you can only use one kind of character.