#abc174c. [abc174_c]Repsept

[abc174_c]Repsept

Problem Statement

Takahashi loves the number 77 and multiples of KK.

Where is the first occurrence of a multiple of KK in the sequence 7,77,777,ldots7,77,777,\\ldots? (Also see Output and Sample Input/Output below.)

If the sequence contains no multiples of KK, print -1 instead.

Constraints

  • 1leqKleq1061 \\leq K \\leq 10^6
  • KK is an integer.

Input

Input is given from Standard Input in the following format:

KK

Output

Print an integer representing the position of the first occurrence of a multiple of KK. (For example, if the first occurrence is the fourth element of the sequence, print 4.)


Sample Input 1

101

Sample Output 1

4

None of 77, 7777, and 777777 is a multiple of 101101, but 77777777 is.


Sample Input 2

2

Sample Output 2

-1

All elements in the sequence are odd numbers; there are no multiples of 22.


Sample Input 3

999983

Sample Output 3

999982