Given an integer, check if it is prime or not. Return True if the number is prime, otherwise False.
No need to print anything; it has already been handled.
The first line contains a single integer 'n'.
Output Format:
Return True if the number 'n' is prime otherwise False.
7
True
15
False