CF760A.Petr and a calendar

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Petr wants to make a calendar for current month. For this purpose he draws a table in which columns correspond to weeks (a week is seven consequent days from Monday to Sunday), rows correspond to weekdays, and cells contain dates. For example, a calendar for January 2017 should look like on the picture:

Petr wants to know how many columns his table should have given the month and the weekday of the first date of that month? Assume that the year is non-leap.

输入格式

The only line contain two integers mm and dd ( 1<=m<=121<=m<=12 , 1<=d<=71<=d<=7 ) — the number of month (January is the first month, December is the twelfth) and the weekday of the first date of this month ( 11 is Monday, 77 is Sunday).

输出格式

Print single integer: the number of columns the table should have.

输入输出样例

  • 输入#1

    1 7
    

    输出#1

    6
    
  • 输入#2

    1 1
    

    输出#2

    5
    
  • 输入#3

    11 6
    

    输出#3

    5
    

说明/提示

The first example corresponds to the January 2017 shown on the picture in the statements.

In the second example 11 -st January is Monday, so the whole month fits into 55 columns.

In the third example 11 -st November is Saturday and 55 columns is enough.

首页