Get the answers you've been searching for with IDNLearn.com. Our community is here to provide the comprehensive and accurate answers you need to make informed decisions.

7.3 code practice edhesive

Sagot :

I am guessing this is wht u asked for

def print_sum(a,b,c):

print(a+b+c)

one = int(input("Enter the 1st number: "))

two = int(input("Enter the 2nd number: "))

three = int(input("Enter the 3rd number: "))

print_sum(one,two,three)