#include<bits/stdc++.h>
using namespace std;
#define SET(a) memset(a,-1,sizeof(a))
#define CLR(a) memset(a,0,sizeof(a))
#define PI acos(-1.0)
#define MOD 1000000007
#define MX 100010
int main()
{
ios_base::sync_with_stdio(0);cin.tie(0);
int tc, kk=1, n, m, x, y, a, b, c;
string s1, s2, s3;
while(cin>>s1>>s2>>s3 && s1!="#")
{
cin>>n;
int odd=0, even=0;
for(int i=0;i<n;i++)
{
cin>>x;
if(x%2) odd++;
else even++;
}
if(s3=="odd") cout<<s1<< " "<<even<<" "<<s2<<" "<<odd;
else cout<<s1<< " "<<odd<<" "<<s2<<" "<<even;
cout<<"\n";
}
return 0;
}
No comments:
Post a Comment