summaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authorNoobie99 <noob999noob999@gmail.com>2023-02-24 16:36:47 +0100
committerNoobie99 <noob999noob999@gmail.com>2023-02-24 16:36:47 +0100
commit36e0edb28725940fb624acab32c251306d35401f (patch)
tree76ff0b1f6521b97d5eab3172e698642896f5ed91 /template
parent7c5258421f636dfd59721ea943902336d8b5387f (diff)
fix
Diffstat (limited to 'template')
-rw-r--r--template/template.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/template/template.cpp b/template/template.cpp
index c40bcd5..9dac341 100644
--- a/template/template.cpp
+++ b/template/template.cpp
@@ -4,7 +4,7 @@ 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 all(x) begin(x), end(x)
-#define sz(x) (ll)size(x)
+#define sz(x) (ll)(x).size()
#define _ << " " <<
#define debug(x) #x << " = " << (x)
@@ -12,6 +12,5 @@ using ll = long long;
using ld = long double;
int main() {
- ios::sync_with_stdio(false);
- cin.tie(nullptr);
+ cin.tie(0)->sync_with_stdio(false);
}