#include <iostream>

using namespace std;

int main()
{
    int i = 0, n = 0;
    while (n < 9001)
        cout << (char)n++[""];
    return 0;
}
