exercicio3-homework def soma(x, y, w): return x + y + w x= int(input("valor 1: ")) y= int(input("valor 2: ")) w= int(input("valor 3: ")) resultado= soma(x, y, w) print("O resultado de", x, "+", y, "+", w, "=", resultado)