summaryrefslogtreecommitdiffstats
path: root/19/cpp/01-1.cpp
diff options
context:
space:
mode:
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;
-}
-