/
Time Limit: 2 sec / Memory Limit: 1024 MiB
配点 : 100 点
問題文
今日の曜日を表す文字列 S が与えられます。
S は SUN,MON,TUE,WED,THU,FRI,SAT のいずれかであり、それぞれ日曜日、月曜日、火曜日、水曜日、木曜日、金曜日、土曜日を表します。
次の日曜日 (あす以降) が何日後か求めてください。
制約
- S は
SUN,MON,TUE,WED,THU,FRI,SATのいずれか
入力
入力は以下の形式で標準入力から与えられる。
S
出力
次の日曜日が何日後か出力せよ。
入力例 1
SAT
出力例 1
1
今日は土曜日です。よって、次の日曜日は 1 日後です。
入力例 2
SUN
出力例 2
7
今日は日曜日です。よって、次の日曜日は 7 日後です。
Score : 100 points
Problem Statement
Given is a string S representing the day of the week today.
S is SUN, MON, TUE, WED, THU, FRI, or SAT, for Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, and Saturday, respectively.
After how many days is the next Sunday (tomorrow or later)?
Constraints
- S is
SUN,MON,TUE,WED,THU,FRI, orSAT.
Input
Input is given from Standard Input in the following format:
S
Output
Print the number of days before the next Sunday.
Sample Input 1
SAT
Sample Output 1
1
It is Saturday today, and tomorrow will be Sunday.
Sample Input 2
SUN
Sample Output 2
7
It is Sunday today, and seven days later, it will be Sunday again.