#D2349. Kth Term

    ID: 1958 Type: Default 2000ms 1073MiB

Kth Term

Kth Term

Print the K-th element of the following sequence of length 32:

1, 1, 1, 2, 1, 2, 1, 5, 2, 2, 1, 5, 1, 2, 1, 14, 1, 5, 1, 5, 2, 2, 1, 15, 2, 2, 5, 4, 1, 4, 1, 51

Constraints

  • 1 \leq K \leq 32
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

K

Output

Print the K-th element.

Examples

Input

6

Output

2

Input

27

Output

5

inputFormat

input are integers.

Input

Input is given from Standard Input in the following format:

K

outputFormat

Output

Print the K-th element.

Examples

Input

6

Output

2

Input

27

Output

5

样例

27
5