What will be the output of following statement when the inputs are :
(i) a=10 , b=23 , c=23 (ii) a=23 , b=10 , c=10
print( a<b)
print(b<=c)
print(a<b<=c)
Answers
Answered by
5
print ( a<b<=c )
a=23,b=10,c=10
Similar questions