library.cpp: In function 'void Solve(int)':
library.cpp:11:20: error: 'adj' was not declared in this scope
11 | if(adj[i].size() == 2) continue;
| ^~~
library.cpp:12:20: error: 'adj' was not declared in this scope
12 | if(adj[i].size() == 1) except = adj[i][0];
| ^~~
library.cpp:37:17: error: 'adj' was not declared in this scope
37 | adj[i].push_back(fin);
| ^~~
library.cpp:44:20: error: 'adj' was not declared in this scope
44 | if(adj[i].size())
| ^~~
library.cpp:56:25: error: 'adj' was not declared in this scope
56 | start = adj[start][0];
| ^~~
library.cpp:61:18: error: 'cout' was not declared in this scope
61 | cout<<res[i]<<" "<<adj[i][0]<<" "<<adj[i][1]<<endl;
| ^~~~
library.cpp:4:1: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
3 | #include "library.h"
+++ |+#include <iostream>
4 | using namespace std;
library.cpp:61:37: error: 'adj' was not declared in this scope
61 | cout<<res[i]<<" "<<adj[i][0]<<" "<<adj[i][1]<<endl;
| ^~~
library.cpp:61:64: error: 'endl' was not declared in this scope
61 | cout<<res[i]<<" "<<adj[i][0]<<" "<<adj[i][1]<<endl;
| ^~~~
library.cpp:4:1: note: 'std::endl' is defined in header '<ostream>'; did you forget to '#include <ostream>'?
3 | #include "library.h"
+++ |+#include <ostream>
4 | using namespace std;