import strutils let N = readLine(stdin).parseInt for i in countdown(N, 1): stdout.write(N.repr.repeat(i)) echo()