@@ -0,0 +1,16 @@
#include <stdio.h>
#include <stdlib.h>
int euclid(int m, int n)
{
int remainder;
remainder = m % n;
while(remainder != 0) {
m = n;
n = remainder;
}
return(n);
The note is not visible to the blocked user.