This repository has been archived on 2023-08-03. You can view files and clone it, but cannot push or open issues or pull requests.
code/main2.cpp
2020-10-29 11:17:36 -05:00

15 lines
294 B
C++

#include <bits/stdc++.h>
#define f first
#define s second
using namespace std;
using ll = long long;
using ii = pair<int, int>;
constexpr int MX = 1e5+5;
int main() {
if (fopen("in", "r")) freopen("in", "r", stdin), freopen("out", "w", stdout);
ios_base::sync_with_stdio(0), cin.tie(0);
}