var q2,q3,q4,q5,i:integer;
x:array[1..10]of integer;
begin
for i:=1 to 10 do
begin
read(x[i]);
if x[i]=2 then q2:=q2+1;
if x[i]=3 then q3:=q3+1;
if x[i]=4 then q4:=q4+1;
if x[i]=5 then q5:=q5+1;
end;
writeln('2: ',q2);
writeln('3: ',q3);
writeln('4: ',q4);
writeln('5: ',q5);
end.