Commit f16eb57d by BellCodeEditor

save project

parent 7d4520b5
Showing with 5 additions and 0 deletions
......@@ -4,4 +4,9 @@ for i in a:
split_ = i.split()
print(split_[0])
print(split_[1:])
sum = 0
for sales in split_[1:]:
sum = sum + int(sales)
print(sum)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment