0_0_19104724_12287.cpp: In function 'int main()':
0_0_19104724_12287.cpp:14:60: error: invalid initialization of reference of type 'LL& {aka long long int&}' from expression of type 'int'
if (!read(a)) break; read(b);read(c);read(d);read(n);
^
0_0_19104724_12287.cpp:8:25: note: in passing argument 1 of 'bool read(LL&)'
char B[1<<26],*S=B;bool read(LL &res){register LL x,b;for(;*S<'-';S++) if(!(*S)) return 0;for(*S!='-'?x=*S++-'0',b=1:(S++,x=b=0);*S>='0';x=(x<<3)+(x<<1)+*S++-'0');res=b?x:-x;return 1;}
^
|