If $m > n$ and $a,m,n$ are positive, with $m$ not equal to $n$, find the greatest common divisor of $2^{2^m}+1, 2^{2^n}+1$. Please solve this problem using Euclid's algorithm.
I tried to use Euclid's algorithm by first dividing $2^{2^m}+1$ by $2^{2^n}+1$, but I got stuck in the 2nd step while dividing $2^{2^n}+1$ by the difference of $2^{2^m}+1$ and $2^{2^n}+1$.