1.26 Exercise 1.26

By calling * instead of square, the arguments need to be calculated twice instead of once. Since these arguments are calls to expmod, this means that the problem is reduced from one problem of size n to two problems of size n/2. This makes the problem O(n) instead of O(logn).

TODO: Elaborate