Computer Science, asked by sumitrana33, 11 months ago

write the function to request the user for two integers and outputs them and their sum​

Answers

Answered by aryanrajxxx751
1

Answer:

a and b

Explanation:

and their sum is

a+b

Answered by santhisiva2037
0

Answer:

Solving it using python 3

Explanation:

a,b=input().split()

print(a+b)

Similar questions