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