Write a python program which checks whether the given number N is between 25 and 75.
N = int(input()) if N > 25 and N < 75: print("Yes") else: print("No")
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment