diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2023-01-07 23:03:50 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2023-01-07 23:03:50 +0200 |
| commit | b11408c454c4bfdf4ba7fbc39343ebc325d371b0 (patch) | |
| tree | d77e2fde1dee460986dd098c364142b772399f56 /cses/IntroductoryProblems/MissingNumber/main.cpp | |
| parent | f285b09aaeae655e2dd523189a6f724544b632e8 (diff) | |
| download | competitive-programming-b11408c454c4bfdf4ba7fbc39343ebc325d371b0.tar.xz competitive-programming-b11408c454c4bfdf4ba7fbc39343ebc325d371b0.zip | |
Solved two problem from codeforces
Diffstat (limited to 'cses/IntroductoryProblems/MissingNumber/main.cpp')
| -rwxr-xr-x[-rw-r--r--] | cses/IntroductoryProblems/MissingNumber/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cses/IntroductoryProblems/MissingNumber/main.cpp b/cses/IntroductoryProblems/MissingNumber/main.cpp index 77f0f06..ec38059 100644..100755 --- 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; |
