f=function(m,s){if(m>0)for(i in 1:3){cat(s,i," ",sep="");f(m-1,paste(" ",s,i,".",sep=""))}};f(scan("stdin"),"")