In some other world today is the
D
th of December. Write a program that displays "
Happy New Year!
" if
D = 31
, "
Before Happy New Year! code>" if D = 30
, "Before before Happy New Year!
" if D = 29
and  ;"Before before before Happy New Year!
" if D = 28
.
Input
The input is an integer D
(28 <= D <= 31).
Imprint
Print the answer to the appropriate line.
Examples
# |
Input |
Output |
1 |
31 |
Happy New Year! |
2 |
28 |
Before before before Happy New Year! |