Skip to content

Instantly share code, notes, and snippets.

@popey456963
Created October 24, 2015 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save popey456963/d6661518c2b7a39bec99 to your computer and use it in GitHub Desktop.
Save popey456963/d6661518c2b7a39bec99 to your computer and use it in GitHub Desktop.
Summing All Inputs
tot = 0
for i in range(int(input())):
tot = tot + int(input())
print(tot)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment