#include "bits/stdc++.h" using namespace std; typedef long long ll; template class dynamic_segtree { public: dynamic_segtree(size_t n) : n(n), root(nullptr) {} void set(size_t p, S x) { assert(p < n); set(root, 0, n, p, x); } S get(size_t p) const { assert(p < n); return get(root, 0, n, p); } S prod(size_t l, size_t r) const { assert(l <= r && r <= n); return prod(root, 0, n, l, r); } S all_prod() const { return root ? root->product : e(); } private: struct node; using node_ptr = unique_ptr; struct node { size_t index; S value, product; node_ptr left, right; node(size_t index, S value) : index(index), value(value), product(value), left(nullptr), right(nullptr) {} void update() { product = op(op(left ? left->product : e(), value), right ? right->product : e()); } }; const size_t n; node_ptr root; void set(node_ptr& t, size_t a, size_t b, size_t p, S x) const { if (!t) { t = make_unique(p, x); return; } if (t->index == p) { t->value = x; t->update(); return; } size_t c = (a + b) >> 1; if (p < c) { if (t->index < p) swap(t->index, p), swap(t->value, x); set(t->left, a, c, p, x); } else { if (p < t->index) swap(p, t->index), swap(x, t->value); set(t->right, c, b, p, x); } t->update(); } S get(const node_ptr& t, size_t a, size_t b, size_t p) const { if (!t) return e(); if (t->index == p) return t->value; size_t c = (a + b) >> 1; if (p < c) return get(t->left, a, c, p); else return get(t->right, c, b, p); } S prod(const node_ptr& t, size_t a, size_t b, size_t l, size_t r) const { if (!t || b <= l || r <= a) return e(); if (l <= a && b <= r) return t->product; size_t c = (a + b) >> 1; S result = prod(t->left, a, c, l, r); if (l <= t->index && t->index < r) result = op(result, t->value); return op(result, prod(t->right, c, b, l, r)); } }; using S = ll; S op(S a, S b) { return a + b; } S e() { return 0; } int main() { constexpr int n = 1000000001; dynamic_segtree seg(n); int q; scanf("%d",&q); long long ans = 0; while (q--) { int type; scanf("%d",&type); if (type == 0) { int x; int y; scanf("%d%d",&x,&y); seg.set(x, seg.get(x) + y); } else { int l, r; scanf("%d%d",&l,&r); ans += seg.prod(l, r + 1); } } printf("%lld\n",ans); }