import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { String[] s = sc.nextLine().split(" "); int year = Integer.valueOf(s[0]); int month = Integer.valueOf(s[1]); int d...