Computer Science, asked by mvprasad552, 3 months ago

write a programme to check weather a number is divisible by 3&4 if number is divisible by both 3&4 print good morning​

Answers

Answered by jayapraveen34
0

Explanation:

num = int(input())

if(num%4==0 and num%3 ==0):

print("good morning")

Similar questions