+ 1
Suma de variables
Hola, llevo haciendo una calculadora un tiempo, pero cuando uso la función sum(x+y) (x e y son variables input) y le doy a print, el resultado es x y en lugar de su suma. ¿Alguien sabe como solucionarlo?
2 Antworten
+ 2
a = int(input())
b = int(input())
print(sum([a,b]))
+ 1
Victor Aguilera Arenas , maybe the problem is that you read both values as strings instead of int. Without your code it's hard to guess. But if I guess it right, read the values this way: x = int(input()), y = int(input()).