ch11_ex94_prof.py

Created by manuel-2de-indice2019

Created on October 14, 2019

164 Bytes


def proba():
    for n in range(2,51):
        for a in range(1,n):
            if 4*a*(n-a)==n*(n-1):
                print(a,n)
    return()