fun main(args: Array) { (1..5).forEach { (1..it).forEach { print('*') } println() } }