Created
August 14, 2020 18:23
-
-
Save coderinblack08/95588f72dd16e1873d6a11f6ab27988d to your computer and use it in GitHub Desktop.
My c++ template for USACO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
#define ll long long | |
using namespace std; | |
void setIO(string s) { | |
ios_base::sync_with_stdio(0); cin.tie(0); | |
freopen((s + ".in").c_str(), "r", stdin); | |
freopen((s + ".out").c_str(), "w", stdout); | |
} | |
int main() { | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment