100 #ABC174C. [ABC174C] Repsept

[ABC174C] Repsept

Score : 300300 points

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,7,77,777,\ldots? (Also see Output and Sample Input/Output below.)

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

Constraints

  • 1K1061 \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.)

101
4

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

2
-1

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

999983
999982