Hostname Aliases

There are some websites that are accessible through several different addresses. For example, for a long time MaiXuanViet was accessible with two hostnames maixuanviet.com and maixuanviet.vn.

You are given a list of page addresses being queried. For simplicity we consider all addresses to have the form http://<hostname>[/<path>], where:

  • <hostname> — server name (consists of words and maybe some dots separating them),
  • /<path> — optional part, where <path> consists of words separated by slashes.

We consider two <hostname> to correspond to one website if for each query to the first <hostname> there will be exactly the same query to the second one and vice versa — for each query to the second <hostname> there will be the same query to the first one. Take a look at the samples for further clarifications.

Your goal is to determine the groups of server names that correspond to one website. Ignore groups consisting of the only server name.

Please note, that according to the above definition queries http://<hostname> and http://<hostname>/ are different.

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 100 000) — the number of page queries. Then follow n lines each containing exactly one address. Each address is of the form http://<hostname>[/<path>], where:

  • <hostname> consists of lowercase English letters and dots, there are no two consecutive dots, <hostname> doesn’t start or finish with a dot. The length of <hostname> is positive and doesn’t exceed 20.
  • <path> consists of lowercase English letters, dots and slashes. There are no two consecutive slashes, <path> doesn’t start with a slash and its length doesn’t exceed 20.

Addresses are not guaranteed to be distinct.

Output

First print k — the number of groups of server names that correspond to one website. You should count only groups of size greater than one.

Next k lines should contain the description of groups, one group per line. For each group print all server names separated by a single space. You are allowed to print both groups and names inside any group in arbitrary order.

Examples

input

10
http://abacaba.vn/test
http://abacaba.vn/
http://abacaba.com
http://abacaba.com/test
http://abacaba.de/
http://abacaba.vn/test
http://abacaba.de/test
http://abacaba.com/
http://abacaba.com/t
http://abacaba.com/test

output

1
http://abacaba.de http://abacaba.vn 

input

14
http://c
http://ccc.bbbb/aba..b
http://cba.com
http://a.c/aba..b/a
http://abc/
http://a.c/
http://ccc.bbbb
http://ab.ac.bc.aa/
http://a.a.a/
http://ccc.bbbb/
http://cba.com/
http://cba.com/aba..b
http://a.a.a/aba..b/a
http://abc/aba..b/a

output

2
http://cba.com http://ccc.bbbb
http://a.a.a http://a.c http://abc

Solution:

#include <bits/stdc++.h>

using namespace std;

map < string, vector <string> > mp;
map < vector <string>, vector <string> > pm;

int main() {
int n;
cin >> n;
for (int i = 0; i < n; i++) {
    string s;
    cin >> s;
int len = s.length();
int cnt = 0, pos = len;
for (int j = 0; j < len; j++) {
      if (s[j] == '/') {
        cnt++;
        if (cnt == 3) {
          pos = j;
          break;
        }
      }
    }
    string host = s.substr(0, pos);
    string path = s.substr(pos);
    mp[host].push_back(path);
  }
  for (auto p : mp) {
    vector <string> &z = p.second;
sort(z.begin(), z.end());
z.resize(unique(z.begin(), z.end()) - z.begin());
pm[z].push_back(p.first);
}
int sz = 0;
for (auto p : pm) {
vector <string> &z = p.second;
if (z.size() < 2) {
      continue;
    }
    sz++;
  }
  printf("%d\n", sz);
  for (auto p : pm) {
    vector <string> &z = p.second;
if (z.size() < 2) {
      continue;
    }
    for (int j = 0; j < (int) z.size(); j++) {
      if (j > 0) {
putchar(' ');
}
printf("%s", z[j].c_str());
}
printf("\n");
}
return 0;
}