BC13 出生日期输入输出

思路:

step1:输入数字;
step2:字符截取,同时分行输出;

代码如下:

n = input()
print('year='+n[:4])
print('month='+n[4:6])
print('date='+n[6:8])