2395: Special Day

Memory Limit:128 MB Time Limit:1.000 S
Creator:
Submit:8 Solved:4

Description

February 18 is a special date for the CCC this year. 
Write a program that asks the user for a numerical month and numerical day of the month and then determines whether that date occurs before, after, or on February 18. 
If the date occurs before February 18, output the word Before. If the date occurs after February 18, output the word After. If the date is February 18, output the word Special. 
今年的 2 月 18 日对于 CCC 来说是一个特殊的日期。 
编写一个程序,询问用户一个数字月份和该月份的一个数字日期,然后确定该日期是在 2 月 18 日之前、之后还是正好是 2 月 18 日。 
如果日期在 2 月 18 日之前,输出单词 Before。如果日期在 2 月 18 日之后,输出单词 After。如果日期是 2 月 18 日,输出单词 Special。

Input

The input consists of two integers each on a separate line. These integers represent a date in 2015. 
The first line will contain the month, which will be an integer in the range from 1 (indicating January) to 12 (indicating December). 
The second line will contain the day of the month, which will be an integer in the range from 1 to 31. You can assume that the day of the month will be valid for the given month.
输入包括两个分别位于不同行的整数。这些整数代表 2015 年的一个日期。
第一行将包含月份,这将是一个从 1(表示 1 月)到 12(表示 12 月)的整数。 
第二行将包含该月的日期,这将是一个从 1 到 31 的整数。您可以假设对于给定的月份,这个月的日期是有效的。

Output

Exactly one of Before, After or Special will be printed on one line.
将在一行上打印出 Before、After 或 Special 中的一个确切选项。

Sample Input

8
31

Sample Output

After

Source/Category