


The first line of input contains two integers 'E' and 'V', separated by a single space. They denote the total number of edges and vertices respectively.
From the second line onwards, the next 'V' lines represent an edge between the two vertices.
Every edge is represented by two vertices(u, v) that share an edge between them. The values of the vertices would again be separated by a single space.
The only line of output prints 'True' if the given graph is a tree, otherwise print 'False'.
1 < 'V' <= 10^5
0 <= 'E' <= min(10^5, V*(V-1)/2)
0 <= u, v <= V-1
Time Limit: 1 sec
A graph is a tree if the following two conditions are satisfied:
Algorithm for checking cycle in Graph.
A graph is a tree if the following two conditions are satisfied:
Algorithm for checking cycle in Graph.
Algorithm for checking whether the graph is connected or not