1#include <iostream>
2#include<conio.h> /* For getch() only */
3using namespace std;
4int main () {
5 int num = 10;
6 if (num % 2 == 0)
7 {
8 cout<<"It is an even number";
9 }
10getch(); /* getch is the function of conio.h */
11}