PROBLEM LINK:
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”.
Author: Bipin Baburaj
Tester: Aswin Ashok
Editorialist: Aswin Ashok
CAKEWALK
Given two integers n and m print “ODD” if n%m is odd else print “EVEN”.
If (n%m)%2==0 print “EVEN” else print “ODD”.
Easiest question I’ve seen till now.