aboutsummaryrefslogtreecommitdiff
path: root/2024/template.cpp
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-12-05 08:02:45 +0100
committerSebastiano Tronto <sebastiano@tronto.net>2024-12-05 08:02:45 +0100
commita937350ab20adc0f8172c4d99f4d711e92dfd947 (patch)
tree77db9835272d828adbe0ea9f9c3989dff9c9eb5c /2024/template.cpp
parent59892b65a9810044ca7f135e39c8d44094224c85 (diff)
downloadaoc-a937350ab20adc0f8172c4d99f4d711e92dfd947.tar.gz
aoc-a937350ab20adc0f8172c4d99f4d711e92dfd947.zip
Day 5 2024
Diffstat (limited to '2024/template.cpp')
-rw-r--r--2024/template.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/2024/template.cpp b/2024/template.cpp
index 3707052..7508a23 100644
--- a/2024/template.cpp
+++ b/2024/template.cpp
@@ -7,7 +7,8 @@
7using namespace std; 7using namespace std;
8 8
9int main() { 9int main() {
10 while (cin >> TODO) 10 string line;
11 while (getline(cin, line))
11 ; 12 ;
12 return 0; 13 return 0;
13} 14}

Generated with cgit - Back to sebastiano.tronto.net