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
1: Why does this question exist? 2: Somehow, this took me 5 trys to AC