#include <stdio.h>

int main(void) {
	printf("%10s\n","a");
	printf("%10s\n","aa");
	printf("%10s\n", "aaa");
	// your code goes here
	return 0;
}
