summaryrefslogtreecommitdiffstats
path: root/19/cpp/01-1.cpp
diff options
context:
space:
mode:
authorGustav Sörnäs <gustav@sornas.net>2020-12-09 08:21:39 +0100
committerGustav Sörnäs <gustav@sornas.net>2020-12-09 08:21:39 +0100
commit305854aa4a57b0a0c377617c65111066b3637f62 (patch)
treef949631aaee8e8a92e8f2d1fc4f8229cb7607811 /19/cpp/01-1.cpp
parent52ce2afc40e599138d643fe04d42f9c149d91192 (diff)
downloadaoc-305854aa4a57b0a0c377617c65111066b3637f62.tar.gz
cleanup 2019
Diffstat (limited to '19/cpp/01-1.cpp')
-rw-r--r--19/cpp/01-1.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/19/cpp/01-1.cpp b/19/cpp/01-1.cpp
deleted file mode 100644
index fcb593a..0000000
--- a/19/cpp/01-1.cpp
+++ /dev/null
@@ -1,8 +0,0 @@
-#include<iostream>
-
-int main() {
- int mass, sum = 0;
- while (std::cin >> mass) sum += (mass / 3) - 2;
- std::cout << sum << std::endl;
-}
-