DCODE - Editorial

PROBLEM LINK:

Practice

Contest

Author: Md Shahid

Tester: Arkapravo Ghosh

Editorialist: Md Shahid

DIFFICULTY:

CAKE-WALK

PROBLEM:

Given N.You need to print YES if N is even else print NO.

EXPLANATION:

In this problem, Rahul is a math lover.He answers every question of his teacher in terms of numbers, If the answer given by Rahul is odd that is number answered by Rahul is odd print "NO" if the number answered by Rahul is even print "YES".

Input N
If N%2==0
  print YES
Else
  print NO

AUTHOR’S, TESTER’S AND EDITORIALIST’S SOLUTIONS:

Author’s and editorialist’s solution can be found here.
Tester’s solution can be found here.

Tags:- ENCODING DCODE dshahid380