Advertisement
Guest User

Untitled

a guest
Oct 7th, 2019
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Numbers_From_1_to_N
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int n = int.Parse(Console.ReadLine());
  10.  
  11. for (int i = 1; i <= n; i++)
  12. {
  13. Console.Write(i + " ");
  14. }
  15.  
  16. Console.WriteLine();
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement