GGT Euklidischer Algorithmus Python
def ggt(a, b):
while b!=0:
a, b = b, a%b
return a
VenomX
def ggt(a, b):
while b!=0:
a, b = b, a%b
return a