+ 1
Where is error?
Here is my code one = int() two = int() sum = int(one + two) print(sum)
3 Réponses
+ 1
# maybe you meant:
one = int(input())
two = int(input())
sum = one + two
print(sum)
---------------------------------------------------
int(obj) -> converts obj to integer (number)
input() -> asks user for input in console
0
Thnx. I remember input)