diff --git a/N-sum.py b/N-sum.py new file mode 100644 index 0000000..00ab20a --- /dev/null +++ b/N-sum.py @@ -0,0 +1,2 @@ +_ = input() +print(sum(map(int, input().split())))