n = gets.to_i a = gets.to_i al = gets.chomp.split.map{|e| e.to_i} b = gets.to_i bl = gets.chomp.split.map{|e| e.to_i} l = Array.new(n+1, 1) d = 0 al.each do |i| d += i l[d] = 0 end bl.each do |i| d -= i l[d] = 0 end puts l.sum