#include #include using std::vector; using std::pair; int reach(vector > &adj, int x, int y) { //write your code here return 0; } int main() { size_t n, m; std::cin >> n >> m; vector > adj(n, vector()); for (size_t i = 0; i < m; i++) { int x, y; std::cin >> x >> y; adj[x - 1].push_back(y - 1); adj[y - 1].push_back(x - 1); } int x, y; std::cin >> x >> y; std::cout << reach(adj, x - 1, y - 1); }