題目來源:judgegirl from ntu prof. pangfeng Liu
Task Description
Write a program to count the number of integers which can be written as ... and respectively.
統計有多少整數被 除餘 、餘 、...、餘 。
Input format
The first line has the number of input integers . Each of the following lines has an input integer. The last line has .
Output format
the number of integers which can be written as ... and .
Sample input 1
5
1
2
3
4
5
3
Sample output 1
1
2
2
Sample input 2
10
3
1
4
1
5
9
2
6
5
3
3
Sample output 2
4
3
3