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