Discover answers to your questions with Westonci.ca, the leading Q&A platform that connects you with knowledgeable experts. Explore thousands of questions and answers from a knowledgeable community of experts ready to help you find solutions. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

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)