407083: GYM102697 054 When is my meeting?
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
054. When is my meeting?time limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output
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.
InputThe 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"
OutputIf 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".
ExampleInputJuly 5, 2019 March 10, 2020Output
The meeting will occur in 248 days.Note
You do not need to account for leap years.