Merry Christmas (and a Happy New Year)

1

The goal of this challenge is to create a program that outputs a string depending on the time of year.

Output

If the date is December 25, output:

Merry Christmas!

If the date is December 31 or January 1, output:

Have a Happy New Year!

If the date is between December 25 and December 31 (exclusive), output:

Happy Holdidays!

If the date is December 24, output:

1 day until Christmas!

If the date is before December 24, output:

x days until Christmas!

Where x is replaced with the numbers of days until Christmas Day. Beware of leap years :)

Input

If your language does not have a builtin function to return the current date, you may have a time stamp passed as input to the program.

Examples

> Dec 25 2015
Merry Christmas!
> Jan 1 2016
Have a Happy New Year!
> Dec 24 2015
1 day until Christmas!
> Jan 2 2016
358 days until Christmas!
> Jan 2 2017
357 days until Christmas!

Winning:

Since your program might be delivered by Santa next year, you need to make the program as small as possible so as many programs as possible can fit into his sack.

TheNumberOne

Posted 2015-12-25T18:31:25.730

Reputation: 10 855

Question was closed 2015-12-25T19:08:15.667

No answers