Computer Science, asked by sumitsumit80639, 2 months ago

write a program to compare the age of two people and print true if both are between 25 - 50 years of age else print false.

Answers

Answered by atulkumargpt
0

Answer:

s = int(input("enter the age: "))

if s>=25 and s<=50:print(" True")

else:print("False")

Similar questions