Computer Science, asked by gargis1307, 1 day ago

Enter a number between 5 and 10 and print if it is 8.​

Answers

Answered by samarthkrv
0

Answer:

x = int(input("Enter a number between 5 and 10:"))

if(x == 8):

   print("The number is 8")

else:

   print("The number is not 8")

Explanation:

Similar questions