Skip to content

Instantly share code, notes, and snippets.

@tratitude
Last active September 5, 2019 08:39
Show Gist options
  • Save tratitude/a06839efb443b539ac6f08be90398841 to your computer and use it in GitHub Desktop.
Save tratitude/a06839efb443b539ac6f08be90398841 to your computer and use it in GitHub Desktop.
/*
GDB online Debugger
https://www.onlinegdb.com/
*/
#include <bits/stdc++.h>
using namespace std;
#define ALL(x) x.begin(), x.end()
typedef long long int lld;
typedef pair<int, int> pii;
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.precision(15);
cout << fixed;
return 0;
}
@tratitude
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment