{}

Build your resume with HTML & CSS and win $100

Get featured on Programiz PRO and the Wall of Inspiration.

Build your resume with HTML & CSS and win $100

Join Challenge →
Join Challenge →

Build your resume with HTML & CSS and win $100

Get featured on Programiz PRO and the Wall of Inspiration.

Build your resume with HTML & CSS and win $100

Join Challenge →
Join Challenge →
run-icon
main.py
n=int(input("input the numbers of values : ")) list=[ ] for i in range (n): values=int(input("enter the values : ")) list.append(values) if list[0]>max(list[1: ]) : print(-1) elif list[0]<min(list[1: ]) : print(1) else : print(0)
Output