#include <iostream>
#include <string>
using namespace std;

int main() {
	string s="H";
	cout << s << endl;
	
	for(int i=0;i<1000000;i++){
		s+='a';
		cout << s << endl;
	}
	
	// your code goes here
	return 0;
}