summaryrefslogtreecommitdiff
path: root/template/template.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'template/template.cpp')
-rw-r--r--template/template.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/template/template.cpp b/template/template.cpp
new file mode 100644
index 0000000..48c2b99
--- /dev/null
+++ b/template/template.cpp
@@ -0,0 +1,18 @@
+#include <bits/stdc++.h>
+using namespace std;
+
+#define fora(i, n) for (int i = 0; i < n; ++i)
+#define forb(i, n) for (int i = 1; i <= n; ++i)
+#define sz(x) ((int)(x).size())
+#define all(x) (x).begin(), (x).end()
+#define _ << " " <<
+#define debug(x) #x << " = " << (x)
+
+using ll = long long;
+using ld = long double;
+using pii = std::pair<int, int>;
+
+int main() {
+ std::ios::sync_with_stdio(false);
+ std::cin.tie(nullptr);
+}