Computer Science, asked by ajaybala970, 3 months ago

write a python program to display the sum of three unique number

1+2+1=3
1==1
1+2=3 output​

Answers

Answered by Anonymous
4

Answer:

Explanation

How do you find the sum of three numbers in Python?

Sum of three numbers

a = int(input())

b = int(input())

print(a + b)

Similar questions