diff --git a/test.cpp b/test.cpp index fa1cb97..d2ab224 100644 --- a/test.cpp +++ b/test.cpp @@ -4,6 +4,10 @@ const int N = 100; int main() { + std::cout << "aaa" << std::endl; + std::cout << "bbb" << std::endl; + std::cout << "ccc" << std::endl; + /* bool sieve[N]; for(bool& element : sieve) element = true; for(int i = 2; i*i< N; ++i) @@ -21,4 +25,5 @@ int main() { if(sieve[i]) std::cout << i << std::endl; } + */ }