#include <stdio.h>
#include <string.h>

int main(void)
{
	char sozcuk[256] = "irlandalilastirilamayanlardan";
	
	int i = 0;
	int j = 0;
	for(; i < strlen(sozcuk); ++i)
	{
		for(j = 0; j <= i; ++j)
		{
			printf("%c", sozcuk[i]);
		}
		printf("\n");
	}
	// your code goes here
	return 0;
}
