| CodeRams Practice Problem Archive |
|---|
| Finished |
You have a meeting on a specific date. Given the current date and the date of the meeting, return how many days there are until the meeting.
The first line will contain the first date and the second line will contain the second date. They will be given in the following format: "month day, year"
If the meeting is on that date print "It is today", if it has passed print "Sorry you are X days late", otherwise print "There are X days until your meeting".
July 5, 2019 March 10, 2020
The meeting will occur in 248 days.
You do not need to account for leap years.
| Name |
|---|


