from datetime import * now=datetime.strptime(input(),'%Y/%m/%d') now+=timedelta(days=2) print(now.strftime('%Y/%m/%d'))