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