-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.cc
More file actions
28 lines (21 loc) · 712 Bytes
/
Copy pathtemplate.cc
File metadata and controls
28 lines (21 loc) · 712 Bytes
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
// {{{ Boilerplate <--------------------------------------------------
#include <bits/stdc++.h>
#define FOR(i, a, b) for ( decltype(a) i = (a) ; i < (b) ; ++i )
#define REP(i, n) FOR(i, 0, n)
#define ALL(a) (a).begin(), (a).end()
#define dbp(...) dblog(#__VA_ARGS__, __VA_ARGS__)
template<typename... Args>
void dblog(std::string vars, Args&&... values)
{
std::cout << "[" << vars << " = ";
std::string delim = "";
(..., (std::cout << delim << values, delim = ", "));
std::cout << "]\n";
}
using ii = std::pair<int, int>;
using ll = long long;
// }}} <--------------------------------------------------
int main()
{
std::cout << "Hello template!\n";
}