fork download
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace HelloWorld
  5. {
  6. class Program
  7. {
  8. static void Main (string[] args)
  9. {
  10. for (int i = 1; i <= 5; i++)
  11. {
  12. Console.WriteLine(string.Join("", Enumerable.Repeat(i.ToString(), i).ToArray()));
  13. }
  14. }
  15. }
  16. }
Success #stdin #stdout 0.01s 131520KB
stdin
Standard input is empty
stdout
1
22
333
4444
55555