@ -1,4 +1,13 @@
#include <stdio.h>
int ggT(int a, int b);
int ggT(int a, int b){
while(a != b){
if(a < b){
b -= a;
} else {
a -= b;
}
return a;