#include <iostream>
using namespace std;
int main(void){
int n;
while(cin>>n){
if(n==0) break;
else{
int a(0),b(0),c(0);
double da[100];
for(int i=0;i<n;i++)
{ cin>>da[i];
if(da[i]<0) a++;
else if(da[i]>0) c++;
else b++;
}
cout<<a<<" "<<b<<" "<<c<<endl;
}
}
return 0;
}
tips:没什么难度