import datetime y,m,d=map(int,input().split('/')) a=datetime.date(y,m,d) a+=datetime.timedelta(days=2) print("{0:%Y/%m/%d}".format(a))