aboutsummaryrefslogtreecommitdiff
path: root/21.5
diff options
context:
space:
mode:
authorAnthony Wang2022-03-24 12:55:16 -0500
committerAnthony Wang2022-03-24 12:55:16 -0500
commitd1b3df269b77cfe6a544fc9b5a443a687ea4e8d8 (patch)
treeaefb81f5e4a35d80d516740e0d33cfb160e517b6 /21.5
parentfc466886d6584909a678559dbb31b17bdaf4243f (diff)
2022 feb gold network
Diffstat (limited to '21.5')
-rw-r--r--21.5/feb/gold/network.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/21.5/feb/gold/network.cpp b/21.5/feb/gold/network.cpp
new file mode 100644
index 0000000..4ad84f2
--- /dev/null
+++ b/21.5/feb/gold/network.cpp
@@ -0,0 +1,13 @@
+#include <bits/stdc++.h>
+#define f first
+#define s second
+using namespace std;
+using ll = long long;
+using ii = pair<int, int>;
+const int MX = 1e5+5;
+
+int main() {
+ cin.tie(0)->sync_with_stdio(0);
+
+
+}