uses crt;
var n,i,s,d:integer;a:array[1..100] of integer;
begin
clrscr;
readln(n);
for i:=1 to n do
begin
write('A[',i,']');
readln(a[i]);
end;
for i:=1 to n do
begin
if a[i] mod 2=0 then inc(d);
if a[i] mod 2<>0 then inc(s);
end;
write('co ',d,' so chan'); writeln;
write('co ',s,' so le');
readln;
end.