17 lines
No EOL
213 B
Python
17 lines
No EOL
213 B
Python
month = int(input(""))
|
|
day = int(input(""))
|
|
|
|
if month > 2:
|
|
print("After")
|
|
|
|
elif month < 2:
|
|
print("Before")
|
|
|
|
elif day < 18:
|
|
print("Before")
|
|
|
|
elif day > 18:
|
|
print("After")
|
|
|
|
else:
|
|
print("Special") |