- 3
Need a help
6 odpowiedzi
+ 6
what help? https://dontasktoask.com
+ 5
Help for what?
+ 2
Excuse me, but Can you clarify your question? and if you already have readymade code, please send it in description
0
Code:
print(int(input())+int(input()))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Another Code for much easier understanding:
x = int(input()) #takes input as integer then assign to variable x
y = int(input()) #takes input as integer then assign to variable y
sum = x + y #add
print(sum) #print the sum or result
- 1
Write a program to take two integers as input and out their sum
Sample input:
2
8
Sample output :
10