Prime Number Check

Easy

📝 Description

Determine if a given number is prime.

Input Format

A single integer n (1 ≤ n ≤ 1000)

Output Format

Print "true" if prime, "false" otherwise

Constraints

1 ≤ n ≤ 1000

🔍 Sample Input

7
            

✅ Sample Output

true
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run