write the function to request the user for two integers and outputs them and their sum
Answers
Answered by
1
Answer:
a and b
Explanation:
and their sum is
a+b
Answered by
0
Answer:
Solving it using python 3
Explanation:
a,b=input().split()
print(a+b)
Similar questions