ch07_ex83_prof.py

Created by manuel-2de-indice2019

Created on October 14, 2019

119 Bytes


def solution(a) :
    if a>=0 :
        return(a**2)
    else :
        return("Pas de solution")