import datetime y,m,d = map(int,input().split('/')) dt = datetime.datetime(y,m,d) dt += datetime.timedelta(days=2) print('{}/{}/{}'.format(dt.year, str(dt.month).zfill(2), str(dt.day).zfill(2)))