Problem A: 日期显示

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:5558 Solved:4499

Description

编写一个程序, 接收用户录入的日期信息并且将其显示出来. 其中, 输入日期的形式为月/日/年(mm/dd/yy), 输出日期的形式为年月日(yy.mm.dd)

以下为程序的运行结果示例:

Enter a date (mm/dd/yy):

12/03/2015↙

You entered the date: 2015.12.03

Input

输入格式: "%d/%d/%d"

Output

输出格式:

输入提示信息:"Enter a date (mm/dd/yy):\n"

输出格式:"You entered the date: %04d.%02d.%02d\n"

为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。

Sample Input Copy

12/03/2015

Sample Output Copy

Enter a date (mm/dd/yy):
You entered the date: 2015.12.03