number_1	=int(input("Enter First value : "))
number_2 	=int(input("Enter Second Value : "))
number_3 	=int(input("Enter Third Value : "))

print("Logical AND Example ")
if((number_1 > number_2 ) and (number_3 > number_2 )) :
	print("First and Third Value is Greater than Second Value")
elif((number_2 > number_1 ) and (number_3 > number_1 )) :
    print("Second and Third Value is Greater than First Value")
else:
    print("Condition not Satisfied...!")
    