Skip to content

Commit b442ef2

Browse files
committed
fixed my template.cpp
1 parent b387c78 commit b442ef2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Library/Miscellanious/template.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
sing namespace std;
1+
#include<bits/stdc++.h>
2+
using namespace std;
23
#define gc getchar_unlocked
34
#define fo(i,n) for(i=0;i<n;i++)
45
#define Fo(i,k,n) for(i=k;k<n?i<n:i>n;k<n?i+=1:i-=1)
@@ -39,6 +40,8 @@ vi g[N];
3940
int a[N];
4041

4142
int main() {
43+
ios_base::sync_with_stdio(0);
44+
int t, i, j, k, p, q, r, x, y, u, v, n, m;
4245

4346
return 0;
4447
}

0 commit comments

Comments
 (0)