@@ -0,0 +1,6 @@
#include "cmath.h"
int GCD(int a, int b) {
if (b) while ((a %= b) && (b %= a));
return a + b;
}
The note is not visible to the blocked user.