numbers.cpp: In function 'long long int A(long long int)':
numbers.cpp:16:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (j=0; j<=9; j++)
^~~
numbers.cpp:20:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(i=0;i<n-2;i++)ans+=81<<(3*i);
^~~
numbers.cpp:21:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(n<2)return x+1; return ans+10;
^~
numbers.cpp:21:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
if(n<2)return x+1; return ans+10;
^~~~~~
numbers.cpp: In function 'int main()':
numbers.cpp:23:39: warning: division by zero [-Wdiv-by-zero]
int main(){cin>>l>>r; if(l<100)cout<<1/0; cout<<A(r)-A(l-1);}
~^~