CompetitiveProgramming/src/bin/testgen.cc

10 lines
194 B
C++
Raw Normal View History

2024-03-05 10:35:37 +00:00
#include<bits/stdc++.h>
2024-02-27 03:42:51 +00:00
using namespace std;
2024-03-05 10:35:37 +00:00
int main() {
cout << 1 << endl << 200000 << endl;
for (int i = 0; i < 199999; ++i) {
cout << i + 1 << ' ' << i + 2 << endl;
2024-02-27 03:42:51 +00:00
}
}