arr {
	for (a=1;a<=5;a++){
		print a;
	}
	do {
	a--;
	print a;
	} while (a>0);

	while (a<10){
	a++;
	print a;
	if(a==5)break;
	}
	print "";
}$