51.6k views
22 votes
7.3 code practice edhesive

User Badsyntax
by
4.2k points

1 Answer

9 votes

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)

User Royce Chao
by
4.9k points