diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-12-05 08:02:45 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-12-05 08:02:45 +0100 |
| commit | a937350ab20adc0f8172c4d99f4d711e92dfd947 (patch) | |
| tree | 77db9835272d828adbe0ea9f9c3989dff9c9eb5c /2024/template.cpp | |
| parent | 59892b65a9810044ca7f135e39c8d44094224c85 (diff) | |
| download | aoc-a937350ab20adc0f8172c4d99f4d711e92dfd947.tar.gz aoc-a937350ab20adc0f8172c4d99f4d711e92dfd947.zip | |
Day 5 2024
Diffstat (limited to '2024/template.cpp')
| -rw-r--r-- | 2024/template.cpp | 3 |
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 @@ | |||
| 7 | using namespace std; | 7 | using namespace std; |
| 8 | 8 | ||
| 9 | int main() { | 9 | int main() { |
| 10 | while (cin >> TODO) | 10 | string line; |
| 11 | while (getline(cin, line)) | ||
| 11 | ; | 12 | ; |
| 12 | return 0; | 13 | return 0; |
| 13 | } | 14 | } |
