From 6b548332bfc6469756526002971c422f43f86d0a Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Mon, 24 Jul 2023 13:11:33 +0300 Subject: Removed some empty *.cpp files and Solved some new problems --- codeforces/TwoGroups/main.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'codeforces/TwoGroups/main.cpp') diff --git a/codeforces/TwoGroups/main.cpp b/codeforces/TwoGroups/main.cpp index 0f7a8f9..a26bdf0 100755 --- a/codeforces/TwoGroups/main.cpp +++ b/codeforces/TwoGroups/main.cpp @@ -1,13 +1,13 @@ -#include +#include using namespace std; -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--) { int n; cin >> n; long long ans = 0; @@ -17,5 +17,5 @@ int main () { ans += x; } cout << abs(ans) << '\n'; - } + } } -- cgit v1.2.3