n=int(input()) mas=list(map(int,input().split())) m=int(input()) s=0 for i in range(n): s+=mas[i] if s>=m: print(i+1) break