+ 2
Write a program to take two integers as input and output their sum.
What's the problem with this code?? https://code.sololearn.com/cMTdlaTcw71h/?ref=app
3 Answers
+ 7
a = int(input())
b = int(input())
sum = a + b
print( sum)
#It's not necessary to add prompt messages in your solutions.
+ 2
Thanks