LUCKYSIX - BOB AND HIS LUCKY NUMBER

Bob's lucky number is 6. He wanted to represent any number n given to him as sum of numbers ending with 6.

For example he represents:

  • 28 as 6 + 16 + 6
  • 38 as 6 + 16 + 16, or 26 + 6 + 6
  • 36 as 36, or 6 + 6 + 6 + 6 + 6 + 6

He wants to find the minimum number of summations required to represent n with numbers ending with 6.

Input

The first line consists of an integer t, the number of test cases. For each test case you are given an integer n.

Output

For each test case, find the minimum number of summations required to represent n with numbers ending with 6. If it is impossible to represent, print “Impossible".

Constraints

1 <= t <= 10^6

1 <= n <= 10^4

Example

Input:
4
28
38
36
14

Output:
3
3
1
Impossible

Added by:cegprakash
Date:2014-12-12
Time limit:3s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: BF

hide comments
2016-08-30 14:27:01
Good problem . Only god knows why it is in tutorial !!
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.