We have an undirected connected simple graph G with $n$ vertices numbered $1$ to $n$ and $m$ edges. Each vertex $i$ has an initial value $W_i$.
You need to perform two types of queries:
- add(v, x): Increase the value for all neighbors of v with +x, such that $1 \leq x \leq 1000$.
- get(v): Print the value of vertex v ($1 \leq v \leq n$).
In a simple graph, the following holds:
- No multi-edges: For each pair of vertices $u$ and $v$, there is no more than one edge connecting $u$ and $v$.
- No self-loops: For each vertex $u$, there is no edge from $u$ to itself.