#include <bits/stdc++.h>
using namespace std;
map <string,int> mp;
int n;
string st;
int main(){
scanf("%d",&n);
for (int i=1;i<=n;i++){
cin >> st;
if (!mp.count(st))
mp[st]=0;
cout << st;
int t=++mp[st];
if (t<100) printf("0");
if (t<10) printf("0");
printf("%d\n",t);
}
}
温馨提示:内容为网友见解,仅供参考