write a program in python for finding sum of any three numbers.
Answers
Answered by
1
Answer:a = int(input())
b = int(input())
print(a + b)
Explanation:
Similar questions