Problem1054--Find the missing number

1054: Find the missing number

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

Given 6 integers whose value might be 1, 2, 3, 4, 5, 6 or 7. That is there is one integer is missing from the input, please output the day of the week with that number.
for example, given:
1 7 5 6 3 2
and 4 is missing, therefore, your program should output Thursday.
Here is the day of the week:
1 Monday
2 Tuesday
3 Wednesday
4 Thursday
5 Friday
6 Saturday
7 Sunday


Input

Six integers in one line

Output

the day of the week

Sample Input Copy

1 4 3 5 6 7

Sample Output Copy

Tuesday

Source/Category