A881.Codecraft III

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Today Vasya visited a widely known site and learned that the continuation of his favourite game Codecraft II will appear after exactly kk months. He looked at the calendar and learned that at the moment is the month number ss . Vasya immediately got interested in what month Codecraft III will appear. Help him understand that.

All the twelve months in Vasya's calendar are named using their usual English names: January, February, March, April, May, June, July, August, September, October, November, December.

输入格式

The first input line contains the name of the current month. It is guaranteed that it is a proper English name of one of twelve months. The first letter is uppercase, the rest are lowercase. The second line contains integer kk ( 0<=k<=1000<=k<=100 ) — the number of months left till the appearance of Codecraft III.

输出格式

Print starting from an uppercase letter the name of the month in which the continuation of Codeforces II will appear. The printed name must be contained in the list January, February, March, April, May, June, July, August, September, October, November, December.

输入输出样例

  • 输入#1

    November
    3
    

    输出#1

    February
    
  • 输入#2

    May
    24
    

    输出#2

    May
    
首页