According to me in the second test case given the output of the test case should be YES instead it is given NO
As odd digit are 1+1+4=6 which should be divisible by 3 therefore it will be a yes.
Please look into it!!
Thanking You
This question is wrong
hello @adityasingh1290
u need to compute sum of even digits and sum of odd digits seprately .
and after that if sum of even digits is divisbile by 4
or if sum of odd digits is divisible by 3 then u need to print yes otherwise no.
12485
sum of even digits-> 2 +4 + 8
sum of odd digits-> 1 + 5