Create 5.cpp

This commit is contained in:
Anthony Wang 2020-12-25 14:16:20 -06:00 committed by GitHub
parent 6334b0f086
commit 0fe93310e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

14
5.cpp Normal file
View file

@ -0,0 +1,14 @@
#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);
}