#include #define rep(i, a, n) for (int i = a; i < (int)(n); i++) #define vi vector #define vs vector #define vvi vector> #define vb vector #define ll long long #define dd double using namespace std; void faster() { ios::sync_with_stdio(false); cin.tie(0); } template void input(T &x) { cin >> x; } template void input(T &x, Args &...args) { cin >> x; input(args...); } template void sorts(vector &vec) { sort(vec.begin(), vec.end()); } template void rsorts(vector &vec) { sort(vec.begin(), vec.end(), greater()); } template inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } struct timekeeper { chrono::high_resolution_clock::time_point starttime; chrono::high_resolution_clock::time_point endtime; chrono::duration duration; }; int main() { int n; input(n); rep(i, 0, n) { cout << 'a'; } cout << '\n'; return 0; }