From b11408c454c4bfdf4ba7fbc39343ebc325d371b0 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Sat, 7 Jan 2023 23:03:50 +0200 Subject: Solved two problem from codeforces --- cses/IntroductoryProblems/MissingNumber/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 cses/IntroductoryProblems/MissingNumber/main.cpp (limited to 'cses/IntroductoryProblems/MissingNumber/main.cpp') diff --git a/cses/IntroductoryProblems/MissingNumber/main.cpp b/cses/IntroductoryProblems/MissingNumber/main.cpp old mode 100644 new mode 100755 index 77f0f06..ec38059 --- a/cses/IntroductoryProblems/MissingNumber/main.cpp +++ b/cses/IntroductoryProblems/MissingNumber/main.cpp @@ -3,8 +3,8 @@ using namespace std; int main () { - ios_base::sync_with_stdio(false); - cin.tie(NULL); + ios_base::sync_with_stdio(false); + cin.tie(NULL); int n; cin >> n; long long sum = 0; -- cgit v1.2.3