Skip to content

Instantly share code, notes, and snippets.

@tmspzz
Created October 9, 2015 12:35
Show Gist options
  • Save tmspzz/28aacf7a4fd1c37c39c8 to your computer and use it in GitHub Desktop.
Save tmspzz/28aacf7a4fd1c37c39c8 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import sys
if __name__ == "__main__":
try:
print sum(map(int, sys.argv[1:]))
except:
print "Works only with integers"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment