Skip to content

Commit

Permalink
Updated Template
Browse files Browse the repository at this point in the history
  • Loading branch information
rsd511 committed Apr 5, 2020
1 parent 8361f6d commit f55d5dc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions template.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ using namespace std;
#define mp make_pair
#define ff first
#define ss second
#define len(s) int(s.length())
#define sz(v) int(v.size())
#define len(s) (ll)int(s.length())
#define sz(v) (ll)int(v.size())
#define MOD 1000000007

void Fast_IO() {
ios::sync_with_stdio(0);
cin.tie(0);
#ifndef ONLINE_JUDGE
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
freopen("debug.txt","w",stderr);
#endif
ios::sync_with_stdio(0);
cin.tie(0);
#ifndef ONLINE_JUDGE
freopen("input.in","r",stdin);
freopen("output.out","w",stdout);
freopen("debug.out","w",stderr);
#endif
}

// Code Here
Expand Down

0 comments on commit f55d5dc

Please sign in to comment.