import java.util.Scanner;
import java.util.TreeMap;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
// 注意 hasNext 和 hasNextLine 的区别
while (in.hasNext()) { // 注意 while 处理多个 case
int year = in.nextInt();
int month=in.nextInt();
int day=in.nextInt();
TreeMap<Integer,Integer> map=new TreeMap<>();
map.put(1,31);
map.put(3,31);
map.put(4,30);
map.put(5,31);
map.put(6,30);
map.put(7,31);
map.put(8,31);
map.put(9,30);
map.put(10,31);
map.put(11,30);
map.put(12,31);
if((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)){
map.put(2,29);
for(Integer m:map.keySet()){
if(month>m){
day=day+map.get(m);
}
}
}else{
map.put(2,28);
for(Integer m:map.keySet()){
if(month>m){
day=day+map.get(m);
}
}
}
System.out.println(day);
}
}
}