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