Drop links or images here to add them to the editor.

Even Function

Create a function named esPar.

The function must receive an integer and return true if the number is even. If it is not even, it must return false.

Required function

bool esPar(int n)

Input

An integer.

Output

true if the number is even.

false if the number is not even.

Examples

Input:

4

Output:

true

Input:

7

Output:

false