Algorithm


A. Checking the Calendar
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given names of two days of the week.

Please, determine whether it is possible that during some non-leap year the first day of some month was equal to the first day of the week you are given, while the first day of the next month was equal to the second day of the week you are given. Both months should belong to one year.

In this problem, we consider the Gregorian calendar to be used. The number of months in this calendar is equal to 12. The number of days in months during any non-leap year is: 312831303130313130313031.

Names of the days of the week are given with lowercase English letters: "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday".

Input

The input consists of two lines, each of them containing the name of exactly one day of the week. It's guaranteed that each string in the input is from the set "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday".

Output

Print "YES" (without quotes) if such situation is possible during some non-leap year. Otherwise, print "NO" (without quotes).

Examples
input
Copy
monday
tuesday
output
Copy
NO
input
Copy
sunday
sunday
output
Copy
YES
input
Copy
saturday
tuesday
output
Copy
YES
Note

In the second sample, one can consider February 1 and March 1 of year 2015. Both these days were Sundays.

In the third sample, one can consider July 1 and August 1 of year 2017. First of these two days is Saturday, while the second one is Tuesday.

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <iostream>
#include <string>

using namespace std;

int main() {
	string days[7] = { "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday" };
    string day1, day2;
    cin >> day1 >> day2;
    
    if(day1 == day2) {
    	cout << "YES" << endl;
    	return 0;
    }
    else
    	for(int i = 0; i < 7; i++)
    		if(days[i] == day1) {
    			if(days[(i+2) % 7] == day2 || days[(i+3) % 7] == day2) {
    				cout << "YES" << endl;
    				return 0;
    			}
    			
    			break;
    		}
    
    cout << "NO" << endl;
    
    return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
monday
tuesday

Output

x
+
cmd
NO
Advertisements

Demonstration


Codeforces Solution-Checking the Calendar-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+