diff options
Diffstat (limited to 'codeforces/TechnicalSupport/main.cpp')
| -rwxr-xr-x | codeforces/TechnicalSupport/main.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/codeforces/TechnicalSupport/main.cpp b/codeforces/TechnicalSupport/main.cpp index 57e8dd3..c9ee12d 100755 --- a/codeforces/TechnicalSupport/main.cpp +++ b/codeforces/TechnicalSupport/main.cpp @@ -1,4 +1,4 @@ -#include<bits/stdc++.h> +#include <bits/stdc++.h> using namespace std; @@ -38,14 +38,14 @@ void solve() { cout << (cnt == 0 ? "Yes" : "No") << '\n'; } -int main () { - ios_base::sync_with_stdio(false); - cin.tie(NULL); - int tt; - cin >> tt; - while(tt--) { +int main() { + ios_base::sync_with_stdio(false); + cin.tie(NULL); + int tt; + cin >> tt; + while (tt--) { solve(); - } + } } /* stuff you should look for: |
