{"raw_statement":[{"iden":"statement","content":"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. \n\nThe 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\"\n\nIf 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\".\n\nYou do not need to account for leap years.\n\n"},{"iden":"input","content":"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\""},{"iden":"output","content":"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\"."},{"iden":"note","content":"You do not need to account for leap years."}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ D_1 = (m_1, d_1, y_1) $ be the current date, and $ D_2 = (m_2, d_2, y_2) $ be the meeting date, where $ m_i \\in \\{1, \\dots, 12\\} $, $ d_i \\in \\{1, \\dots, 31\\} $, $ y_i \\in \\mathbb{Z} $, and months have fixed days:  \n$ \\text{days}(m) = \\begin{cases} \n31 & m \\in \\{1,3,5,7,8,10,12\\} \\\\\n30 & m \\in \\{4,6,9,11\\} \\\\\n28 & m = 2 \n\\end{cases} $\n\n**Constraints**  \nDates are valid per the above day counts; no leap years.\n\n**Objective**  \nCompute $ \\Delta = \\text{days}(D_2) - \\text{days}(D_1) $, where $ \\text{days}(D) $ is the total number of days from a fixed reference (e.g., year 0) to date $ D $. Then:  \n- If $ \\Delta = 0 $: output \"It is today\"  \n- If $ \\Delta < 0 $: output \"Sorry you are $ |\\Delta| $ days late\"  \n- If $ \\Delta > 0 $: output \"There are $ \\Delta $ days until your meeting\"","simple_statement":"You are given two dates in \"month day, year\" format. Calculate the number of days between them.  \n\n- If the meeting is today: print \"It is today\"  \n- If the meeting has passed: print \"Sorry you are X days late\"  \n- If the meeting is in the future: print \"There are X days until your meeting\"  \n\nIgnore leap years.","has_page_source":false}