PROGRAMMING:What day is the week?
If I tell you what day it is today, what day will it be in a few days?
Please write a program, input today's week number $$W $$and the days passed $$n $$, calculate and output the week number of this day in the future $$d $$.
Note: integer values 0 ~ 6 are used to represent Sunday, Monday,..., Saturday.
####Input format
>$$W $$and $$n$$
####Output format
> $$d$$
Note: the title guarantees that the values of $$W $, $$n $$and $$d $$are in the range of int type representation.
####Input sample
```in
3 100
```
####Output sample
```out
five
```
answer:If there is no answer, please comment
Please write a program, input today's week number $$W $$and the days passed $$n $$, calculate and output the week number of this day in the future $$d $$.
Note: integer values 0 ~ 6 are used to represent Sunday, Monday,..., Saturday.
| 0 |
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
| 6 |
####Input format
>$$W $$and $$n$$
####Output format
> $$d$$
Note: the title guarantees that the values of $$W $, $$n $$and $$d $$are in the range of int type representation.
####Input sample
```in
3 100
```
####Output sample
```out
five
```
answer:If there is no answer, please comment