Computer Science, asked by PPT222, 2 days ago

Write a program to check whether the number entered by the user is divisible by 2 and 5 or not.​

Answers

Answered by anushadaram
0

Explanation:

if a%2==0 && a%5==0:

print("yes")

else:

print("no")

mark me as briliant

Similar questions