Question:
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
.
Input Specification
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.
Output Specification
Exactly one of Before
, After
, or Special
will be printed on one line.
Sample Input
3
4
Output
After
Find a solution to this if you’re bored.
If want the solution, scroll down for an answer!
a = int(input())
b = int(input())
if a == 2 and b == 18:
print("Special")
elif (a <= 1) or (a == 2 and b < 18):
print("Before")
else:
print("After")
Don’t be nervous, my next blog is a good surprise!