-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-without-prettyprint.cpp
68 lines (60 loc) · 1.8 KB
/
template-without-prettyprint.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/***
* ____
* ____ ___ ____ ________ __/ __/
* / __ `__ \/ __ `/ ___/ / / / /_
* / / / / / / /_/ / / / /_/ / __/
* /_/ /_/ /_/\__,_/_/ \__,_/_/
*
* @link : https://maruftuhin.com
*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define ft first
#define sd second
#define pb(x) push_back(x)
#define all(x) x.begin(), x.end()
#define allr(x) x.rbegin(), x.rend()
#define mem(a, b) memset(a, b, sizeof(a))
#define eps 1e-9
const ll inf = 1e9;
const ll mod = 1e9 + 7;
const ll NN = 1e5 + 10;
/* -------------------------------------------------------------------------- */
/* Debugging Macros */
/* -------------------------------------------------------------------------- */
#ifdef redback
#include "prettyprint.hpp"
#define dbg(...) \
cout << "L-" << __LINE__ << " :: "; \
_print_out(#__VA_ARGS__, __VA_ARGS__);
template <typename T>
void _print_out(const char* name, T&& arg1) {
cout << name << " = " << arg1 << endl;
}
template <typename T1, typename... Args>
void _print_out(const char* names, T1&& arg1, Args&&... args) {
const char* comma = strchr(names + 1, ',');
cout.write(names, comma - names) << " = " << arg1 << " | ";
_print_out(comma + 1, args...);
}
template <typename T>
void _print_out(const char* name, T a[], int n) {
cout << name << " = " << pretty_print_array(a, n) << endl;
}
#else
#define dbg(args...)
#endif
/* -------------------------------------------------------------------------- */
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
ll t = 1, tc;
cin >> tc;
ll n, m;
while (tc--) {
ll i, j, k;
cout << n << "\n";
}
return 0;
}