#include using namespace std; using LL=long long; #define rep(i,n) for(int i=0; i<(n); i++) struct Query{ int c,i,j; }; int N,Q; LL B[100000]; int ddA[100002]; vector ans; void Q1(int i){ ans.push_back({1,i+1,0}); B[i]++; } void Q2(int i){ ans.push_back({2,i+1,0}); B[i]--; } void Q3(int i,int j){ ans.push_back({3,i+1,j+1}); B[i]+=B[j]; } void Q4(int i,int j){ ans.push_back({4,i+1,j+1}); B[i]-=B[j]; } void make_k(int i,LL k){ if(k>0){ make_k(i,k/2); Q3(i,i); if(k&1) Q1(i); } if(k<0){ make_k(i,-((-k)/2)); Q3(i,i); if(k&1) Q2(i); } } int main(){ scanf("%d%d",&N,&Q); rep(i,N) B[i]=0; LL cB[3]={}; rep(i,Q){ int c,s; scanf("%d%d",&c,&s); s--; if(c==1){ Q1(s); if(s=0; i--){ if(i=3) printf("%d %d %d\n",q.c,q.i,q.j); } return 0; }