import scala.io.StdIn object Main { def main(args: Array[String]): Unit = { val str: Char = StdIn.readChar print(" %s\n".format(str)) print(" %s %s\n".format(str, str)) print(" %s %s %s\n".format(str, str, str)) print(" %s %s %s %s\n".format(str, str, str, str)) print("%s %s %s %s %s".format(str, str, str, str, str)) } }