Write a program to check whether the number entered by the user is divisible by 2 and 5 or not.
Answers
Answered by
0
Explanation:
if a%2==0 && a%5==0:
print("yes")
else:
print("no")
mark me as briliant
Similar questions