#OLD299. 质数

质数

Description

给你一个整数n。判断其是否为质数?(n>0)

Format

Input

一个整数。

Output

如果是质数,输出"YES.", 否组输出"NO."。

Samples

2
YES.

Hint