Skip to content

Commit

Permalink
Last beginner contest Atcoder
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanashii76 authored Feb 19, 2024
1 parent 137d879 commit eac9ed0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Atcoder/abc341/A.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include <bits/stdc++.h>
using namespace std;

int main(void) {

int n;
cin >> n;

for (int i = 0; i < n ; ++i)
cout << "10";

cout << "1" << endl;

}

0 comments on commit eac9ed0

Please sign in to comment.