10 lines
181 B
Python
Executable file
10 lines
181 B
Python
Executable file
#!/usr/bin/env python3
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
result = 0
|
|
|
|
for arg in sys.argv:
|
|
if(arg.isdecimal()):
|
|
result += int(arg)
|
|
print(result)
|