Given a graph of nodes and edges, print Graph Theory!
Input Specification
The first line will contain two integers .
The next lines will each contain two integers, .
Output Specification
Print Graph Theory!
Sample Input
2 2
1 2
2 2
Sample Output
Graph Theory!
Comments