Tìm các số nguyên tố


Submit solution

Points: 1 (partial)
Time limit: 1.0s
Memory limit: 488M

Author:
Problem type
Allowed languages
Ada, Assembly, Awk, C, C++, C11, CLANG, CLANGX, Classical, COBOL, Coffee, CSC, D lang, DART, F95, FORTH, Fortrn, GAS32, GO, Haskell, Itercal, Java, kotlin, LEAN, LISP, LUA, MONOVB, Nasm, OCAML, Pascal, Perl, php, PIKE, prolog, Pypy, Python, Ruby 2, RUST, Scala, SCM, SED, SWIFT, TCL, TUR, V8JS, VB, ZIG

Tìm tất cả các số nguyên tố trong khoảng từ 1 đến \(\le N\).

Input

Số tự nhiên \(N\) \((2 \le N \le 500000)\).

Đầu ra

Các số nguyên tố từ 1 đến \(\le N\), mỗi số in trên một dòng.

Ví dụ

Input

10

Output

2
3
5
7

Comments

There are no comments at the moment.