#include #include #include #include using namespace std; map ma; int main() { int n; scanf("%d",&n); while(n--) { char str[50]; scanf("%s",str); int len =strlen(str); sort(str,str+len); printf("%d\n",ma[str]); ma[str]++; } return 0; }