#include #include using namespace std; long long child[100001]; bool lck[100001]; vector V[100001]; int dfs(int nw,int n){ int ret = 0; for(int i = 0; V[nw].size() > i; i++){ if(lck[V[nw][i]])continue; lck[V[nw][i]] = true; ret += dfs(V[nw][i],n); } return child[nw] = ret+1; } int main(){ int n,q;cin>>n>>q; for(int i = 0; n-1 > i; i++){ int s,t;cin>>s>>t; s--;t--; V[s].push_back(t); V[t].push_back(s); } lck[0] = true; dfs(0,n); long long ans = 0; for(int i = 0; q > i; i++){ int p,x;cin>>p>>x;p--; ans += child[p]*x; cout << ans << endl; } }