#include using namespace std; using ll = long long; using P = pair; #define fix(x) fixed << setprecision(x) #define asc(x) x, vector, greater #define rep(i, n) for(ll i = 0; i < n; i++) #define all(x) (x).begin(),(x).end() templatebool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;} templatebool chmax(T&a, const T&b){if(a> n; vector ok(n+1,true); ok[0] = ok[n] = false; int ans = n-1, now = 0; int x; cin >> x; while(x--){ int k; cin >> k; now += k; ans -= ok[now]; ok[now] = false; } cin >> x; while(x--){ int k; cin >> k; now -= k; ans -= ok[now]; ok[now] = false; } cout << ans << '\n'; return 0; }