void Load(long x) { int y,r; int i=0; while(1) { y=x/2; r=x%2; ACC[i]=r; if(y==0)break; x=y; i++; } }