Please check sollution of delhi's odd even
@kartiksaxena2000 You logic is going wrong. Do a dry run and check it yourself.
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
please check now cuz it still is not running