REMAIN - Editorial

PROBLEM LINK:

Practice

Contest

Author: Bipin Baburaj

Tester: Aswin Ashok

Editorialist: Aswin Ashok

DIFFICULTY:

CAKEWALK

PROBLEM:

Given two integers n and m print “ODD” if n%m is odd else print “EVEN”.

EXPLANATION:

If (n%m)%2==0 print “EVEN” else print “ODD”.