#C5316. Check Prime Likes

    ID: 48952 Type: Default 1000ms 256MiB

Check Prime Likes

Check Prime Likes

Given an integer n representing the number of likes, determine whether n is a prime number.

A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself. In other words, if n is prime, it is only divisible by 1 and n.

The input value satisfies \(1 \leq n \leq 1{,}000{,}000\).

If n is a prime number, output Special Mention!; otherwise, output Keep Trying!.

inputFormat

The input consists of a single integer (n) ((1 \leq n \leq 1{,}000{,}000)) representing the number of likes.

outputFormat

Print a single line containing either "Special Mention!" if (n) is a prime number, or "Keep Trying!" if it is not.## sample

1
Keep Trying!