ch02_indice2de_numwork_tp2_b_prof.py

Created by manuel-2de-indice2019

Created on October 14, 2019

146 Bytes


def pgcd(a,b):
    for i in range(1,b+1):
        if a%i==0 and b%i==0:
            pgd=i
    return(pgd)