//蚂蚁感冒
//掉头 看成穿过
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int []a=new int [n];
for(int i=0;i<n;i++){
a[i]=sc.nextInt();
}
int left=0; //在a[0]左边 往右走的
int right=0; //在a[0]右边 往左走的
for(int i=1;i<n;i++){
if(Math.abs(a[i]) < Math.abs(a[0]) && a[i]>0) left++; //计算左边往右走的个数
else if(Math.abs(a[i]) > Math.abs(a[0]) && a[i]<0) right++; //计算右边往左走的个数
}
if(a[0]>0 && right==0 || a[0]<0 && left==0){
System.out.println(1);
}else System.out.println(left+right+1);
}
}