Write a program that prompts the user to enter two dates and then indicates which date comes earlier on the calendar (m/d/yyyy):
Sample input:
3/6/2008
5/17/2007
Sample output:
5/17/2007 is earlier than 3/6/2008
Sample input:
3/6/2007
5/17/2008
Sample output:
3/6/2007 is earlier than 5/17/2008
Sample input:
3/6/2007
3/6/2007
Sample output:
Same day!