prev=max
Seq_no=1
n=int(input())
for i in range(n):
curr=eval(input())
if(Seq_no==1):
if(prev<=curr):
Seq_no +=1
else:
if(prev>=curr):
Seq_no +=1
break
prev=curr
if(Seq_no==2 or (Seq_no==1 and n !=1)):
print(“true”)
else:
print(“false”)
this is my code
it is showing ‘<=’ int define our something.
please help me how to correct this code.