Write a program to take a number from the user check if it is divided by 9 and 5 answer in python
Answers
Answered by
0
Answer:
input = input("Enter a Number")
if input % 9 == 0:
print("divisible by nine")
if input % 5 == 0:
print("divisible by five")
Similar questions
History,
13 hours ago
Social Sciences,
13 hours ago
English,
13 hours ago
English,
1 day ago
Social Sciences,
8 months ago
Math,
8 months ago
English,
8 months ago