Computer Science, asked by shahitejas10, 1 day ago

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 darshandevan50
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