x,y=map(int, input().split()) A=list(map(int, input().split())) B=list(map(int, input().split())) s=sum(B) ans=y//s if y%s!=0: ans+=1 print(ans)