python_math_stat/practica/math/statistic/Statistic tasks/sum.py

6 lines
107 B
Python
Raw Normal View History

2023-10-04 17:12:15 +03:00
# сумма для целых чисел
S= 0
for i in input().split():
i = int(i)
S += i
print(S)