import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int year = scanner.nextInt(); int month = scanner.nextInt(); int day = scanner.nextInt(); boolean isLeap = isLeapYear(year); int[] daysInMonth = {31, 28, 31, 30, 31, 30, 3...