Remove input redirection

This commit is contained in:
Anthony Wang 2021-07-06 10:43:03 -05:00
parent 363f03806d
commit 759593df5b
Signed by: a
GPG key ID: BC96B00AEC5F2D76
2 changed files with 0 additions and 2 deletions

View file

@ -7,7 +7,6 @@ using ii = pair<int, int>;
constexpr int MX = 1e5+5;
int main() {
if (fopen("in", "r")) freopen("in", "r", stdin), freopen("out", "w", stdout);
cin.tie(0)->sync_with_stdio(0);

View file

@ -29,7 +29,6 @@ constexpr ll INF = 1e9, LINF = 1e18, MOD = 1e9+7;
constexpr int MX = 1e5+5;
int main() {
if (fopen("in", "r")) freopen("in", "r", stdin), freopen("out", "w", stdout);
cin.tie(0)->sync_with_stdio(0);