#include using namespace std; typedef long long ll; typedef long double ld; #define REP(i, n) for (int i = 0; i < (n); ++i) #define REPR(i, n) for (int i = n - 1; i >= 0; --i) #define FOR(i, m, n) for (int i = m; i < n; ++i) #define FORR(i, m, n) for (int i = m; i >= n; --i) #define ALL(v) (v).begin(),(v).end() templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b s(2); cin >> s[0] >> s[1]; sort(ALL(s)); if(s[0]=="Mon"&&s[1]=="Sun"){ cout << "8/32" << endl; } else if(s[0]=="Sat"&&s[1]=="Sun"){ cout << "8/33" << endl; } else{ cout << "8/31" << endl; } }