- 1
Write a program to take two integers as input and output their sum.
I don't exactly know how to complete this one .I've, run different variations on how to take the input and output the sum ; but I still am confused can someone help.
5 Antworten
+ 4
x = int(input())
Likewise, you can declare another variable to take input and add with x :)
+ 1
Please provide your code for the assignments.
https://www.sololearn.com/discuss/333866/?ref=app
+ 1
Actually, I found a way around it thank you so much.
+ 1
print(int(input()) + int(input()))
0
How did you get that