You are given three numbers if any number are in range of 10 to 20
You are given three numbers if any number are in range of 10 to 20 .prints true else false
a=int(input())
b=int(input())
c=int(input())
if((a>=10 and a<=20) or (b>=10 and b<=20) or (c>=10 and c<=20)):
print(True)
else:
print(False)
Comments
Post a Comment