CF172D.Calendar Reform

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Reforms have started in Berland again! At this time, the Parliament is discussing the reform of the calendar. To make the lives of citizens of Berland more varied, it was decided to change the calendar. As more and more people are complaining that "the years fly by...", it was decided that starting from the next year the number of days per year will begin to grow. So the coming year will have exactly aa days, the next after coming year will have a+1a+1 days, the next one will have a+2a+2 days and so on. This schedule is planned for the coming nn years (in the nn -th year the length of the year will be equal a+n1a+n-1 day).

No one has yet decided what will become of months. An MP Palevny made the following proposal.

  • The calendar for each month is comfortable to be printed on a square sheet of paper. We are proposed to make the number of days in each month be the square of some integer. The number of days per month should be the same for each month of any year, but may be different for different years.
  • The number of days in each year must be divisible by the number of days per month in this year. This rule ensures that the number of months in each year is an integer.
  • The number of days per month for each year must be chosen so as to save the maximum amount of paper to print the calendars. In other words, the number of days per month should be as much as possible.

These rules provide an unambiguous method for choosing the number of days in each month for any given year length. For example, according to Palevny's proposition, a year that consists of 108 days will have three months, 36 days each. The year that consists of 99 days will have 11 months, 9 days each, and a year of 365 days will have 365 months, one day each.

The proposal provoked heated discussion in the community, the famous mathematician Perelmanov quickly calculated that if the proposal is supported, then in a period of nn years, beginning with the year that has aa days, the country will spend pp sheets of paper to print a set of calendars for these years. Perelmanov's calculations take into account the fact that the set will contain one calendar for each year and each month will be printed on a separate sheet.

Repeat Perelmanov's achievement and print the required number pp . You are given positive integers aa and nn . Perelmanov warns you that your program should not work longer than four seconds at the maximum test.

输入格式

The only input line contains a pair of integers aa , nn ( 1<=a,n<=107;1<=a,n<=10^{7}; a+n1<=107a+n-1<=10^{7} ).

输出格式

Print the required number pp .

Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    25 3
    

    输出#1

    30
    
  • 输入#2

    50 5
    

    输出#2

    125
    

说明/提示

A note to the first sample test. A year of 25 days will consist of one month containing 25 days. A year of 26 days will consist of 26 months, one day each. A year of 27 days will have three months, 9 days each.

首页