Created
May 10, 2020 19:35
-
-
Save techsharif/09ec445bfd9d010f910992a5b9d13b62 to your computer and use it in GitHub Desktop.
codeforces-beginner template for competitive programming
This file contains 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> | |
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