import java.util.*; public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); String string = sc.nextLine(); String[] str = string.split(" "); Calendar c = Calendar.getInstance();
c.set(Integer.parseInt(str[0]),Integer.parseInt(str[1])-1,Integer.parseInt(str[2]));
System.out.println(c.get(Calendar.DAY_OF_YEAR));
}
}