199k views
2 votes
7.3 Code Practice edhesive

User Trismi
by
3.4k points

2 Answers

6 votes

Answer:

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)

Step-by-step explanation:

Hoped this Helped!

User Anthony Elliott
by
3.5k points
4 votes

Answer:

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)

Step-by-step explanation:

hope this helped :)

User Shining
by
3.8k points