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