Write a python program to accept any integer number and display its multiple of 3 and 5
or not
Answers
Answered by
0
Answer:
n=int(input())
if n%3==0 and n%5==0:
print("It is divisible by 3 and 5")
else:
print("it is not divisible")
Similar questions
Math,
2 months ago
Business Studies,
2 months ago
Environmental Sciences,
5 months ago
English,
5 months ago
Math,
11 months ago
Biology,
11 months ago