시간 제한메모리 제한제출정답맞힌 사람정답 비율
8 초 512 MB269741.176%

문제

Terraced fields with beautiful landscapes in Northwest Vietnam are popular destinations for tourists. At each terraced field selected as a tourist attraction, the local authorities build a staircase alongside the terraced field. The steps are numbered from 1 to n starting from the bottom of the hill. At steps divisible by 8 (i.e. steps numbered 8, 16, 24, etc.) and at the final step (i.e. nth step), the step number is stone engraved as a height indication for tourists. It is considered that 6 and 8 are lucky digits so people used a precious stone to specifically engrave these digits.

There is a tour that goes to a terraced field having n steps. The price of the tour is the number of precious stone engraved digits on its steps.

For given n, your task is to determine the price of the tour.

입력

The input consists of several datasets. The first line of the input contains the number of datasets, which is a positive number and is not greater than 100,000. The following lines describe the datasets.

Each dataset is described by one line containing an integer n (1 < n ≤ 1018).

출력

For each dataset, write out on one line containing the price of the tour. 

예제 입력 1

4
9
32
56
18

예제 출력 1

1
2
4
3