class Ideone {
    static void main(String[] args) {
    	def t = "Byk tuogoob tupogoobenky bychok"
		1.upto(t.size() - 1) {
			println t[0..it]
		}
    }
}
