import io
import thread

main() {
	for 0..3 {
		thread.create(work)
	}

	work()
}

work() {
	io.out("[ ] start\n")
	io.out("[x] end\n")
}