/in/foo.cc: In function 'int read()':
/in/foo.cc:8:2: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(ch>='0'&&ch<='9')x=x*10+ch-'0',ch=getchar(); return x;
^~~~~
/in/foo.cc:8:53: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while(ch>='0'&&ch<='9')x=x*10+ch-'0',ch=getchar(); return x;
^~~~~~
/in/foo.cc: In function 'int main()':
/in/foo.cc:40:25: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long long int' [-Wformat=]
printf("%d\n",Dp(1,n,0));
^