BlueBook
Given
Range A | |
Range B | |
Range C | |
Range D | |
Range E | |
Range F |
Input Specification
Input consists of a bunch of integers -1
.
There will always be less than
Output Specification
Output the number of occurrences of A
…F
. Output 0
if
Do not include -1
in your calculations.
Sample Input
Copy
1
9999
10001
1000000
29999
-1
Sample Output
Copy
2
1
1
0
0
1
Comments