-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathA_Echo.cpp
37 lines (32 loc) · 960 Bytes
/
A_Echo.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <bits/stdc++.h>
using namespace std;
//----------------------------------------------------------------//
// definitions //
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define endl '\n'
//----------------------------------------------------------------//
// preDefined functions//
//----------------------------------------------------------------//
//data types//
//----------------------------------------------------------------//
// helper functions //
//----------------------------------------------------------------//
// solve function//
void solve() {
long long siz;cin>>siz;
string str;cin>>str;
for(auto&it:str)cout<<it<<it;
}
//----------------------------------------------------------------//
// main function//
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
long long test = 1;
// cin >> test;
while (test--) {
solve();
}
}