prev=0
n=int(input())
inc=True
ans=“true”
for i in range(n):
m=int(input())
if ans!=“false”:
if inc==True:
if m<=prev:
inc=False
if m==prev:
ans=“false”
else:
if m>=prev:
ans=“false”
prev=m
print(ans)
prev doubt had some typing errors so I am sending it again
some test cases are not getting passed
pls give some test cases where it is failing