Problem in "Delhi's odd even"

I am unable to find what is wrong with my code.
It is unable to pass the test case.
Can you please help me identifying that test case.
LINK:https://ide.codingblocks.com/s/140757

@shrey_sharma Your logic is wrong here.
What actually you are doing is that you are finding the sum of all digits and then checking its divisibility with 4 and 3 which is wrong. You have to find the sum of all digits which are even and the sum of all digits which are odd separately. If the sum of all even digits is divisible by 4 or sum of all odd digits is divisible by 3, then only print “Yes”. In all other cases print “No”.

Hope this helps :slightly_smiling_face: