#include<iostream> using namespace std; bool Even(int N) { return (N % 2 == 0); } main() {
Your answer
}