fun main(){ val n = readLine()!!.toInt() var x = 1 while (x <= n) { var y = 0 while (y < x) { print("*") y++ } println() x++ } }