#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include <vector>
#include<algorithm>
#include<string>
#include<string.h>
#include<math.h>
#include <cstdio>
#include <queue>
#include<stack>
#define Watch_RunTime 1
#if Watch_RunTime
#include <ctime>
int start_time;
#endif
#define Max 3000
#define debug 1
using namespace std;
int main() {
#if debug
freopen("in.txt", "r", stdin);
#endif
#if Watch_RunTime
start_time = clock();
#endif
#if debug
freopen("CON", "r", stdin);
#endif
#if Watch_RunTime
cout << "\n\n\n\n-------\n";
cout << clock() - start_time <<"ms";
#endif
system("pause>nul");
return 0;
}