# !/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = 'tianyi' __date__ = '2024/3/19 21:07 ' __file__ = 'HW_HJ73.py' #提供一个字典,键是月份,值是每月天数 month_day = {1:31,2:28,3:31,4:30,5:31,6:30,7:31,8:31,9:30,10:31,11:30,12:31} year,mouth,day = map(int,input().split()) total_day = 0 for i in range(1,mouth+...