i need to input values split the space
output should return me sum of this values
so if i putting 1 4
my code should return 5
a,b = input().split(" ")
print (int(a)+int(b))
this code is working
but i need to define variables!
how i can input 5 value? 10 values? and don't define this variables somewhere
for example i want input 1 1 1 1 1
and get 5