## Exercise
Copy the example3.py app to exercise.py and implement a route to compute the GCD of two integers given in the URL.
example3.py
exercise.py
Python's math module has a GCD function.
math
For example, the GCD(15,20) is 5.
Hints: