PROGRAMMING:What day is the nth day after today
From the keyboard input today is the day of the week, and a number n, calculate today after the nth day is the day of the week.
###Input format:
Enter two integers from the keyboard, with spaces between them. The first integer represents the day of the week, and the second integer represents n days later.
###Output format:
Output an integer between 1 and 7, ` 7 'for Sunday, ` 1' for Monday,..., and ` 6 'for Saturday.
###Input sample 1:
```in
3 2
```
###Output sample 1:
```out
five
```
###Input sample 2:
```in
3 4
```
###Output sample 2:
```out
seven
```
answer:If there is no answer, please comment
###Input format:
Enter two integers from the keyboard, with spaces between them. The first integer represents the day of the week, and the second integer represents n days later.
###Output format:
Output an integer between 1 and 7, ` 7 'for Sunday, ` 1' for Monday,..., and ` 6 'for Saturday.
###Input sample 1:
```in
3 2
```
###Output sample 1:
```out
five
```
###Input sample 2:
```in
3 4
```
###Output sample 2:
```out
seven
```
answer:If there is no answer, please comment