Problem2181--Parity judgment

2181: Parity judgment

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

Write a function definition called even that takes one argument of type int and returns a bool value. The function returns true if its one argument is an even number; otherwise it returns false.

Input

one argument of type int

Output

a bool value

Sample Input Copy

2

Sample Output Copy

True

Source/Category

20