Run ID:154269

提交时间:2026-05-30 09:17:22

#include<bits/stdc++.h> using namespace std; int main() { int m,n,c=0,d=0; cin>>m>>n; for(int x=m;x<=n;++x) { if(x%2!=0) c+=x; else d+=x; } return 0; }