Sherlock and Date

3.8

48 votes
Approved, Basic Programming, Easy, Implementation, Open
Problem

Watson gives a date to Sherlock and asks him what is the date on the previous day. Help Sherlock. You are given date in DD MM YYYY format. DD is an integer without leading zeroes. MM is one of the "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November" and "December" (all quotes for clarity). YYYY is also an integer between 1600 and 2000 without leading zeroes. You have to print the date of the previous day in same format.

Input and Output
First line, T (≤ 100), the number of testcases. Each testcase consists of date in specified format. For each testcase, print the required answer in one line. Given date will be a valid date.

Sample Input
3
23 July 1914
2 August 2000
5 November 1999
Sample Output
22 July 1914
1 August 2000
4 November 1999
Time Limit: 2
Memory Limit: 256
Source Limit:
Editor Image

?