← Каталог
C++ — олимпиадные шаблоны — Обязательный каркас
Фрагмент из «C++ — олимпиадные шаблоны»: Обязательный каркас.
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
// ваш код
return 0;
} #include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
// ваш код
return 0;
}