In n số tự nhiên

View as PDF



Time limit:
Scratch 5.0s
Memory limit:
Scratch 256M

Author:
Problem types
Points: 100 Time limit: 1.0s Memory limit: 640M Input: stdin Output: stdout

Viết chương trình nhập vào một số nguyên dương \(n\). Hãy in ra \(n\) số tự nhiên đầu tiên.

Input

  • Một số nguyên dương \(n\)(\(n\leq 10^5\)) .

Output

  • In \(n\) số tự nhiên đầu tiên

Example

Test 1

Input
5
Output
1 2 3 4 5

Test 2

Input
7
Output
1 2 3 4 5 6 7

Comments