a=input() year=a[0:4] month=a[4:6] date=a[6:] print(f'year={year}') print(f'month={month}') print(f'date={date}')