算日子

输入两个正整数monthmonthdayday,表示20222022年的月份和日,请你计算一下还有多少天到20232023年。例如输入12 3112~31,表示是2022202212123131日,那么还有11天就到20232023年了,就输出11

输入格式

第一行,两个正整数monthmonthdayday

输出格式

一行一个整数,表示答案。

样例输入

12 30

样例输出

2

数据限制

对于100%100\%的数据,保证1month121\le month\leq 121day311\le day\leq 31