Help me in solving LB02A problem not able to understand the theory of question

My issue

My code

# Step 1: Read and understand the problem statement and sample test cases

# Click on 'Next' once you are ready to proceed.

Learning course: Python for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone

in the test case 1st number represents legs of chicken,2nd number represent ducks leg,3rd number represent total number of legs in the field.

for example if chicken have 3 legs then total number of legs in the field can be multiples of 3.

ans: you just need to check total number of legs in the field is divisible by chickens leg or ducks leg .if its divisible then print accordingly else print none.

1 Like