#!/usr/bin/env python3 from sys import argv summary = 0 for item in argv[1:]: summary += int(item) print(summary)