Python releases a new major version Python 3.X.0 every October.
In this problem, Python 3.12.0 is considered to have been released in 2023, and each later Python 3.X.0 version is released one year after the previous one. Therefore, the release year of Python 3.X.0 is .
Each version is supported until the year that is 5 years after its release year. More precisely, the end-of-support year of Python 3.X.0 is , and in this problem that entire year is considered to be included in the support period.
For example, Python 3.12.0 was released in 2023 and is considered supported through 2028.
Given an integer and the current year , determine whether Python 3.X.0 is supported in year .
A version that has not been released yet is not considered supported.
Input
The input is given in the following format.
Output
If Python 3.X.0 is supported in the current year , print Support.
Otherwise, print End of Life.
Constraints
- .
- .
- and are integers.
Subtasks
Samples
Python 3.12.0 was released in 2023 and is considered supported through 2028 in this problem.
The end-of-support year of Python 3.12.0 is 2028, so it is no longer supported in 2029.
The release year of Python 3.15.0 is . It has not been released yet in 2025, so it is not considered supported.
해설
관리자가 작성한 해설을 별도 페이지에서 볼 수 있어요.