#include #include #include #include #include using namespace std; int main() { int n; map m; map ::iterator ito; scanf("%d",&n); string str; char s[45]; for(int i=1;i<=n;i++) {scanf("%s",s); sort(s,s+strlen(s)); str=s; ito=m.find(str); if(ito==m.end()) m[str]=0; else m[str]++; printf("%d\n",m[str]); } return 0; }