Create a function named esPrimo.
The function must receive an integer and return true if the number is prime. If it is not prime, it must return false.
A prime number is a number greater than 1 that is only divisible by 1 and itself.
bool esPrimo(int n)
An integer.
true if the number is prime.
false if the number is not prime.
Input:
7
Output:
true
Input:
12
Output:
false