#include
int main(){
int k=0, temp=0;
int a=0, b=0, c=0;
scanf("%d", &k);
while(k--){
scanf("%d", &temp);
if(temp>0)
a++;
else if(temp==0)
b++;
else
c++;
}
printf("正数:%d个\n零:%d个\n负数:%d个", a, b, c);
return 0;
}
#include
int main(){
int k=0, temp=0;
int a=0, b=0, c=0;
scanf("%d", &k);
while(k--){
scanf("%d", &temp);
if(temp>0)
a++;
else if(temp==0)
b++;
else
c++;
}
printf("正数:%d个\n零:%d个\n负数:%d个", a, b, c);
return 0;
}