num = 50 if num %10 == 0: print(str(num) + "is a multiple number") else: print(str(num)+ "is not a multiple number") #secon num = 45 if num %10 == 0: print(str(num) +" "+ "is a multiple number") else: print(str(num) +" "+ "is not a multiple number ") #elif ladder ind = int(350) if ind>=380: print("india will win") elif ind>=370: print("india might win") elif ind>=360: print("aus will win") else: print("better luck next time") num = int(input (" enter a number: ") ) if num > 99 and num < 1000: if num % 2 == 0: print(str(num) + "is a three digit even number") else: print(str(num) + " is not a three digit even number")