Computer Science, asked by vk162910, 5 months ago

Write a python program to accept any integer number and display its multiple of 3 and 5

or not​

Answers

Answered by harshini61999
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