From eac9ed004e7e26dd029591a9da4418a9aa0e46cd Mon Sep 17 00:00:00 2001 From: "Paulo H. Lamounier" <53798700+Nanashii76@users.noreply.github.com> Date: Mon, 19 Feb 2024 10:24:19 -0300 Subject: [PATCH] Last beginner contest Atcoder --- Atcoder/abc341/A.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Atcoder/abc341/A.cpp diff --git a/Atcoder/abc341/A.cpp b/Atcoder/abc341/A.cpp new file mode 100644 index 0000000..521232c --- /dev/null +++ b/Atcoder/abc341/A.cpp @@ -0,0 +1,14 @@ +#include +using namespace std; + +int main(void) { + + int n; + cin >> n; + + for (int i = 0; i < n ; ++i) + cout << "10"; + + cout << "1" << endl; + +} \ No newline at end of file