write python program to display "hello" if a number entered by user is a multiple of five otherwise print "bye"
write python program to display "hello" if a number entered by user is a multiple of five otherwise print "bye"
num=int(input("enter a number "))
if num%5==0:
print("hello")
else:
print("bye")
Comments
Post a Comment