fork download
  1. using System;
  2.  
  3. class Program
  4. {
  5. static void Main()
  6. {
  7. int N = int.Parse(Console.ReadLine());
  8. for (int i = 1; i <= N; i++)
  9. Console.Write(i + " ");
  10. }
  11. }
Success #stdin #stdout 0.08s 30032KB
stdin
55
stdout
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55