Skip to content

Instantly share code, notes, and snippets.

@techsharif
Created May 10, 2020 19:35
Show Gist options
  • Save techsharif/09ec445bfd9d010f910992a5b9d13b62 to your computer and use it in GitHub Desktop.
Save techsharif/09ec445bfd9d010f910992a5b9d13b62 to your computer and use it in GitHub Desktop.
codeforces-beginner template for competitive programming
#include <bits/stdc++.h>
using namespace std;
void solution(){
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout << fixed << setprecision(2);
int test_cases;
cin >> test_cases;
while(test_cases--){
solution();
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment