0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 11:45:25 +00:00
OI-codes/AtCoder/ABC251/A/A.cpp

21 lines
287 B
C++
Raw Normal View History

#include <iostream>
#include <string>
using std::cin;
using std::cout;
const char endl = '\n';
std::string s;
int main() {
std::ios::sync_with_stdio(false);
cin >> s;
for (int i = 0; i < 6; i++) {
cout << s[i % s.size()];
}
cout << endl;
return 0;
}