## Exercise

Copy the example3.py app to exercise.py and implement a route to compute the GCD of two integers given in the URL.

Python's math module has a GCD function.

For example, the GCD(15,20) is 5.

Hints: