H24

#include <bits/stdc++.h>

using namespace std;
long long a[1000000],n,s=0,d=0;
int main()
{
    cin>>n;
    for(int i=0;i<n;i++)
    {
        cin>>a[i];
    }
    for(int i=0;i<n;i++)
    {
        if(a[i]%2==0)
            s+=a[i];
        else
            if(a[i]%2==1)
                d+=a[i];
    }
    cout<<s<<endl;
    cout<<d;
}


Các câu hỏi tương tự
TK
Xem chi tiết
TK
Xem chi tiết
H24
Xem chi tiết
0L
Xem chi tiết
0L
Xem chi tiết
NM
Xem chi tiết
LT
Xem chi tiết
H24
Xem chi tiết
NM
Xem chi tiết