object Test{
def main(args : Array[String]): Unit ={
val str : String = "hello 123"
for(c <- str)
println(c)
}
}