#include <iostream>
#include <string>

int main() {
    for (int i = 1; i < 100; i++)
        std::cout << std::string(i, 'TESTING') << std::endl;
}