/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;
import java.time.*;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
     public static void main(String[]args){
    Scanner sc = new Scanner(System.in);
    LocalDate nextDate = nextDate(sc.nextInt());
    System.out.println(nextDate);
}

private static LocalDate nextDate(int daysToAdd){
    LocalDate today = LocalDate.now();
    today = today.plusDays(daysToAdd);
    return today;
}
    
    private static LocalDate nextDateInline(){
     return LocalDate.now().plusDays(int daysToAdd);
    }
    
    
    
}