test3

Digrafo g(V);
int aristas = 0;
for (int v = 0; v < V; ++v)   
  aristas += g.ady(v).size();
cout << aristas << '\n';
Confused Crayfish