#include <iostream> using namespace std; bool Is_leap_year(int year) { if(year % 400 == 0 || (year % 100 != 0 && year % 4 == 0)) { &...