diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2023-02-22 20:18:04 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2023-02-22 20:18:04 +0200 |
| commit | ef9dfb5d8bfa705a0c056a2652d298e5ebb763fb (patch) | |
| tree | a3ae50170dcaa0982a2680fb9df2c1a8ec179bb4 /codeforces/Sum/main.cpp | |
| parent | 6fd4c8747f798b62428ca020171596b8636a7a4c (diff) | |
| download | competitive-programming-ef9dfb5d8bfa705a0c056a2652d298e5ebb763fb.tar.xz competitive-programming-ef9dfb5d8bfa705a0c056a2652d298e5ebb763fb.zip | |
Solved a bunch of problems
Diffstat (limited to 'codeforces/Sum/main.cpp')
| -rwxr-xr-x | codeforces/Sum/main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/codeforces/Sum/main.cpp b/codeforces/Sum/main.cpp index 7a56c46..f9def9b 100755 --- a/codeforces/Sum/main.cpp +++ b/codeforces/Sum/main.cpp @@ -35,13 +35,13 @@ void solve() { } int main () { - ios_base::sync_with_stdio(false); - cin.tie(NULL); - int tt; - cin >> tt; - while(tt--) { + ios_base::sync_with_stdio(false); + cin.tie(NULL); + int tt; + cin >> tt; + while(tt--) { solve(); - } + } } /* stuff you should look for: |
