1851: 出生日期输入输出
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
输入一个人的出生日期(包括年月日),将该生日中的年、月、日分别输出。
Input
输入只有一行,出生日期,包括年月日,年月日之间的数字没有分隔符。
Output
三行,第一行为出生年份,第二行为出生月份,第三行为出生日期。输出时如果月份或天数为1位数,需要在1位数前面补0。
Sample Input Copy
20130225
Sample Output Copy
year=2013
month=02
date=25