s = '201606050039'a = s[:4]b = s[4:6]c = s[6:8]d = s[8:]print('年纪{}'.format(a))print('学院{}'.format(b))print('班级{}'.format(c))print('学号{}'.format(d))