Computer Science, asked by ekta6618, 11 months ago

to accept the value of A B C and print their sum​

Answers

Answered by gajjarmanthan
6

Answer:

a = int(input("enter number:"))

b = int(input("enter number:"))

c = int(input("enter number:"))

sum = a + b + c

print ("totol:", sum)

Explanation:

Answered by kshavenger
1

Answer:

Explanation:a = int(input("enter number:"))

b = int(input("enter number:"))

c = int(input("enter number:"))

sum = a + b + c

print ("totol:", sum)

Similar questions