The Logging Company cuts a lot of trees. For management reasons, they want to produce a table of the total amount of wood cut every day. They have hired you, to help them produce the table. They've kept a log of trees logged, and they want you to produce a table from this data.
Input Specification
The first line will contain the integer
There will be
Output Specification
You are to output Day i: m
for every day Weekend
.
Sample Input 1
3
3
1
1
1
2
2
2
1
5
Sample Output 1
Day 1: 3
Day 2: 4
Day 3: 5
Explanation for Sample Output 1
There are three days in the log. The first day contains three trees, one mass unit each. The second day contains two trees, two mass units each. The third day contains one tree, measuring five mass units.
Sample Input 2
1
0
Sample Output 2
Weekend
Comments