aboutsummaryrefslogtreecommitdiff
path: root/2024/template.cpp
blob: 86077cc878438c51396f183eeae849737a6b6633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <algorithm>
#include <cstdint>
#include <iostream>
#include <map>
#include <queue>
#include <ranges>
#include <set>
#include <sstream>
#include <string>
#include <string_view>
#include <vector>
using namespace std;

int main() {
	string line;
	while (getline(cin, line))
		;
	return 0;
}

Generated with cgit - Back to sebastiano.tronto.net