/in/foo.cc: In function 'int main()':
/in/foo.cc:15:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int i=0;i<a.length();i++)
                ^
/in/foo.cc:16:9: warning: array subscript has type 'char' [-Wchar-subscripts]
   c[a[i]]++;
         ^
/in/foo.cc:17:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int i=0;i<b.length();i++)
                ^
/in/foo.cc:18:9: warning: array subscript has type 'char' [-Wchar-subscripts]
   c[b[i]]--;
         ^
/in/foo.cc:7:6: warning: unused variable 'n' [-Wunused-variable]
  int n=2;
      ^
/in/foo.cc:8:6: warning: unused variable 'count' [-Wunused-variable]
  int count=0;
      ^