Run ID:92223
提交时间:2024-09-28 16:32:13
#include <bits/stdc++.h> using namespace std; int main(){ int y,m; cin>>y>>m; for(int i=1;i<=11;i++){ if((y%400==0)||(y%100!=0&&y%4==0)) m*=1.3; else m*=1.2; y++; } cout<<m; }