Advertisement
Guest User

Untitled

a guest
Apr 10th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <limits.h>
  4. #include <math.h>
  5. #include <queue>
  6. #include <list>
  7. #define MAXN 100000
  8. using namespace std;
  9.  
  10. ifstream in("input.txt");
  11. ofstream out("output.txt");
  12.  
  13.  
  14. int mat[MAXN][MAXN], N;
  15. int vett[MAXN];
  16.  
  17. main(){
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement