question archive A week consists of 7 days (Monday to Sunday)
Subject:Computer SciencePrice: Bought3
A week consists of 7 days (Monday to Sunday). Akash takes a leave every Saturday.
If a month consists of N days and the first-day of the month is Monday, find the number of days Akash would take a leave in the whole month.
Input Format
Output Format
For each test case, output in a single line, the number of days Akash would take a leave in the whole month.
Constraints
Sample Input 1
4
5
6
8
22
Sample Output 1
0
1
1
3
Explanation
Test case 1: The month consists of 5 days (Monday, Tuesday, Wednesday, Thursday, and Friday). Since there are no Saturdays, Akash would go to school every day. Thus, he takes a leave for 0 days.
Test case 2: The month consists of 6 days (Monday, Tuesday, Wednesday, Thursday, Friday, Saturday). Akash takes a leave only on Saturday. Thus, he takes a leave for 1 day.
Test case 3: The month consists of 8 days (Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday, Monday). Akash takes a leave only on Saturday. Thus, he takes a leave for 1 day.