Skip to content

Instantly share code, notes, and snippets.

@coderinblack08
Created August 14, 2020 18:23
Show Gist options
  • Save coderinblack08/95588f72dd16e1873d6a11f6ab27988d to your computer and use it in GitHub Desktop.
Save coderinblack08/95588f72dd16e1873d6a11f6ab27988d to your computer and use it in GitHub Desktop.
My c++ template for USACO
#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