CompetitiveProgramming/src/bin/testgen.cc

10 lines
183 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() {
2024-03-09 06:10:15 +00:00
cout << 500000 << endl;
for (int i = 10'000'000 - 500'000; i < 10'000'000; ++i) {
cout << i << ' ';
2024-02-27 03:42:51 +00:00
}
}