Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2015
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. #include <cstdio>
  2. #include <cstdlib>
  3. #include <cstring>
  4. #include <cmath>
  5. #include <string>
  6. #include <vector>
  7. #include <iostream>
  8. #include <algorithm>
  9. #include <numeric>
  10. #include <queue>
  11. #include <stack>
  12. #include <map>
  13. #include <set>
  14. #include <fstream>
  15. #include <iomanip>
  16.  
  17. #ifdef DK
  18. const int MAX = 10;
  19. #else
  20. const int MAX = 1e5 + 11;
  21. #endif
  22.  
  23. using namespace std;
  24.  
  25. int main() {
  26. #ifdef DK
  27.   freopen("in.txt", "r", stdin);
  28. //  freopen("out.txt", "w", stdout);
  29. #endif
  30.   printf("100000\n");
  31.   for (int i = 0; i < 100000; ++i) {
  32.     printf("%d ", i + 1);
  33.   }
  34.   printf("\n");
  35.   return 0;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement