aboutsummaryrefslogtreecommitdiff
path: root/codeforces/Sum/main.cpp
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2023-02-22 20:18:04 +0200
committeromagdy7 <omar.professional8777@gmail.com>2023-02-22 20:18:04 +0200
commitef9dfb5d8bfa705a0c056a2652d298e5ebb763fb (patch)
treea3ae50170dcaa0982a2680fb9df2c1a8ec179bb4 /codeforces/Sum/main.cpp
parent6fd4c8747f798b62428ca020171596b8636a7a4c (diff)
downloadcompetitive-programming-ef9dfb5d8bfa705a0c056a2652d298e5ebb763fb.tar.xz
competitive-programming-ef9dfb5d8bfa705a0c056a2652d298e5ebb763fb.zip
Solved a bunch of problems
Diffstat (limited to 'codeforces/Sum/main.cpp')
-rwxr-xr-xcodeforces/Sum/main.cpp12
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: