/in/ex1_1.cpp: In function 'int main()':
/in/ex1_1.cpp:8:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;i<s.size()-2;i++){
~^~~~~~~~~~~
/in/ex1_1.cpp:11:9: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
else cout<<0; break;
^~~~
/in/ex1_1.cpp:11:23: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'else'
else cout<<0; break;
^~~~~
/in/ex1_1.cpp:12:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (i==s.size()) cout<<1;
~^~~~~~~~~~
/in/ex1_1.cpp:7:9: warning: unused variable 'j' [-Wunused-variable]
int j;
^