diff options
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 | } |
