alphacademy-cpp/quito/13.2.cpp

13 lines
181 B
C++
Raw Permalink Normal View History

2023-03-02 13:58:39 +00:00
#include <bits/stdc++.h>
using namespace std;
int main() {
string input;
cin >> input;
for (char i = 'a'; i <= 'z'; i++) {
cout<<input + i<<' ';
}
}