fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n;
  6. cin>>n;
  7. string st,st1;
  8. set<string>s;
  9. while(n--)
  10. {
  11. cin>>st>>st1;
  12. s.insert(st+"-"+st1);
  13. cout<<(st+"-"+st1)<<endl;
  14. }
  15. cout<<s.size();
  16. return 0;
  17. }
Success #stdin #stdout 0s 5516KB
stdin
3
oak yellow
oak yellow
oak yellow
stdout
oak-yellow
oak-yellow
oak-yellow
1