Archives / Snippets / Projets

def pgcd(a,b): return a if b==0 else pgcd(b,a%b) print pgcd(127,18)