/* Hand-coded assemby for calculating the GCD int gcd(int a, int b) { while (a!=0 && b!=0) { if (a