Clockwork Bomb

My name is James diGriz, I’m the most clever robber and treasure hunter in the whole galaxy. There are books written about my adventures and songs about my operations, though you were able to catch me up in a pretty awkward moment.

I was able to hide from cameras, outsmart all the guards and pass numerous traps, but when I finally reached the treasure box and opened it, I have accidentally started the clockwork bomb! Luckily, I have met such kind of bombs before and I know that the clockwork mechanism can be stopped by connecting contacts with wires on the control panel of the bomb in a certain manner.

I see n contacts connected by n - 1 wires. Contacts are numbered with integers from 1 to n. Bomb has a security mechanism that ensures the following condition: if there exist k ≥ 2 contacts c 1, c 2, …, c k forming a circuit, i. e. there exist k distinct wires between contacts c 1 and c 2c 2 and c 3, …, c k and c 1, then the bomb immediately explodes and my story ends here. In particular, if two contacts are connected by more than one wire they form a circuit of length 2. It is also prohibited to connect a contact with itself.

On the other hand, if I disconnect more than one wire (i. e. at some moment there will be no more than n - 2 wires in the scheme) then the other security check fails and the bomb also explodes. So, the only thing I can do is to unplug some wire and plug it into a new place ensuring the fact that no circuits appear.

I know how I should put the wires in order to stop the clockwork. But my time is running out! Help me get out of this alive: find the sequence of operations each of which consists of unplugging some wire and putting it into another place so that the bomb is defused.

Input

The first line of the input contains n (2 ≤ n ≤ 500 000), the number of contacts.

Each of the following n - 1 lines contains two of integers x i and y i (1 ≤ x i, y i ≤ nx i ≠ y i) denoting the contacts currently connected by the i-th wire.

The remaining n - 1 lines contain the description of the sought scheme in the same format.

It is guaranteed that the starting and the ending schemes are correct (i. e. do not contain cicuits nor wires connecting contact with itself).

Output

The first line should contain k ( k ≥ 0) — the minimum number of moves of unplugging and plugging back some wire required to defuse the bomb.

In each of the following k lines output four integers a ib ic id i meaning that on the i-th step it is neccesary to unplug the wire connecting the contacts a i and b i and plug it to the contacts c i and d i. Of course the wire connecting contacts a i and b i should be present in the scheme.

If there is no correct sequence transforming the existing scheme into the sought one, output -1.

Examples

input

3
1 2
2 3
1 3
3 2

output

1
1 2 1 3

input

4
1 2
2 3
3 4
2 4
4 1
1 3

output

3
1 2 1 3
4 3 4 1
2 3 2 4

Note

Picture with the clarification for the sample tests:

Solution:

#include <bits/stdc++.h>

using namespace std;

const int N = 500010;

int p[N];

inline int find_set(int x) {
if (x != p[x]) {
p[x] = find_set(p[x]);
}
return p[x];
}

vector < pair <int, int> > edges[N];

inline void unite(int x, int y) {
x = find_set(x);
y = find_set(y);
if (x == y) {
return;
}
p[x] = y;
if (edges[x].size() > edges[y].size()) {
swap(edges[x], edges[y]);
}
while (!edges[x].empty()) {
edges[y].push_back(edges[x].back());
edges[x].pop_back();
}
}

vector < pair <int, int> > g[N];
bool rem[N], add[N];
bool done[N];
int bx[N], by[N];

inline void dfs(int v, int pr) {
int sz = g[v].size();
for (int j = 0; j < sz; j++) {
    int u = g[v][j].first;
    if (u == pr) {
      continue;
    }
    dfs(u, v);
    int id = g[v][j].second;
    if (!rem[id]) {
      unite(u, v);
      continue;
    }
    pair <int, int> e = edges[u].back();
while (done[e.second]) {
edges[u].pop_back();
e = edges[u].back();
}
done[e.second] = true;
printf("%d %d %d %d\n", u + 1, v + 1, bx[e.second] + 1, by[e.second] + 1);
edges[u].pop_back();
unite(u, e.first);
}
}

int ax[N], ay[N];
pair < pair <int, int>, int > ev[2 * N];

int main() {
int n;
scanf("%d", &n);
for (int i = 0; i < n - 1; i++) {
    scanf("%d %d", ax + i, ay + i);
    ax[i]--; ay[i]--;
    if (ax[i] > ay[i]) {
swap(ax[i], ay[i]);
}
ev[i] = make_pair(make_pair(ax[i], ay[i]), i);
rem[i] = false;
}
for (int i = 0; i < n - 1; i++) {
    scanf("%d %d", bx + i, by + i);
    bx[i]--; by[i]--;
    if (bx[i] > by[i]) {
swap(bx[i], by[i]);
}
ev[n - 1 + i] = make_pair(make_pair(bx[i], by[i]), ~i);
add[i] = false;
}
sort(ev, ev + n - 1 + n - 1);
int ans = 0;
for (int i = n - 1 + n - 1 - 1; i >= 0; i--) {
if (i > 0 && ev[i].first == ev[i - 1].first) {
i--;
continue;
}
int x = ev[i].second;
if (x >= 0) {
rem[x] = true;
ans++;
} else {
add[~x] = true;
}
}
for (int i = 0; i < n; i++) {
    g[i].clear();
  }
  for (int i = 0; i < n - 1; i++) {
    g[ax[i]].push_back(make_pair(ay[i], i));
    g[ay[i]].push_back(make_pair(ax[i], i));
  }
  for (int i = 0; i < n; i++) {
    edges[i].clear();
  }
  for (int i = 0; i < n - 1; i++) {
    if (!add[i]) {
      continue;
    }
    done[i] = false;
    edges[bx[i]].push_back(make_pair(by[i], i));
    edges[by[i]].push_back(make_pair(bx[i], i));
  }
  for (int i = 0; i < n; i++) {
    p[i] = i;
  }
  printf("%d\n", ans);
  dfs(0, -1);
  return 0;
}