#include <bits/stdc++.h>
using namespace std;
long long x,n,i,t,s;
int main()
{
cin>>n;
t=0;
s=1;
for (i=1; i<=n; i++)
{
cin>>x;
if (x%3==0) t=t+x;
else s=s*x;
}
cout<<t<<" "<<s;
return 0;
}
Đúng 0
Bình luận (0)