It is possible to name the days 0 through 6 where day 0 is Sunday and day 6 is Saturday. If you go on a wonderful holiday leaving on day number 3 (a Wednesday) and you return home after 10 nights you would return home on a Saturday (day 6)

Write a general version of the program which asks for the starting day number and the length of your stay, and it will tell you the number of day of the week you will return on. It should work for any number of days away.
Inputs for the starting day can be a string or an integer - your program can be coded for one or the other, it does not have to accept both.

Your program should be the number of the day, not the word representation!
in Python.