while(<>){
	chomp;
	last if($_ == 0);
	y/123456789/yukicoder/;
	print "$_\n";
}