

Time Limit: 2 sec / Memory Limit: 1024 MB
配点: 100 点
問題文
2019 年 11 月 30 日のような、ある月の最後の日を「月末日」といいます。
整数 M_1, D_1, M_2, D_2 が入力されます。
2019 年 M_1 月 D_1 日の次の日が 2019 年 M_2 月 D_2 日であることが分かっています。
2019 年 M_1 月 D_1 日が月末日であるか判定してください。
制約
- 2019 年 M_1 月 D_1 日、2019 年 M_2 月 D_2 日はともにグレゴリオ暦において存在する日付である。
- 2019 年 M_1 月 D_1 日の次の日は 2019 年 M_2 月 D_2 日である。
入力
入力は以下の形式で標準入力から与えられます。
M_1 D_1 M_2 D_2
出力
2019 年 M_1 月 D_1 日が月末日である場合は 1
、そうでない場合は 0
と出力してください。
入力例 1
11 16 11 17
出力例 1
0
11 月 16 日は月末日ではありません。
入力例 2
11 30 12 1
出力例 2
1
11 月 30 日は月末日です。
Score: 100 points
Problem Statement
In this problem, a date is written as Y-M-D. For example, 2019-11-30 means November 30, 2019.
Integers M_1, D_1, M_2, and D_2 will be given as input.
It is known that the date 2019-M_2-D_2 follows 2019-M_1-D_1.
Determine whether the date 2019-M_1-D_1 is the last day of a month.
Constraints
- Both 2019-M_1-D_1 and 2019-M_2-D_2 are valid dates in the Gregorian calendar.
- The date 2019-M_2-D_2 follows 2019-M_1-D_1.
Input
Input is given from Standard Input in the following format:
M_1 D_1 M_2 D_2
Output
If the date 2019-M_1-D_1 is the last day of a month, print 1
; otherwise, print 0
.
Sample Input 1
11 16 11 17
Sample Output 1
0
November 16 is not the last day of a month.
Sample Input 2
11 30 12 1
Sample Output 2
1
November 30 is the last day of November.