// 別解(文字列の辞書順比較) #include using namespace std; using ll = long long; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout << fixed << setprecision(15); string H, M; cin >> H >> M; if ((int)H.size() == 1) { H = "0" + H; } if ((int)M.size() == 1) { M = "0" + M; } string t = H + M; string S = "0730"; string T = "0830"; string ans; if (t < S) { ans = "Yes"; } else if (t < T) { ans = "Late"; } else { ans = "No"; } cout << ans << '\n'; return 0; }