Run id: 123214

Main.cc: In function 'int main()':
Main.cc:8:3: error: 'b' was not declared in this scope
   b[i] = 0;
   ^
Main.cc:11:9: error: 'b' was not declared in this scope
   int x=b[i];
         ^
Main.cc:16:7: error: 'b' was not declared in this scope
   if (b[i] > b[c]) {
       ^
Main.cc:6:6: warning: unused variable 'a' [-Wunused-variable]
  int a[m+1];
      ^