Run id: 106682

Main.cc:12:15: error: stray '#' in program
 min = arr[i]; #include  
               ^
Main.cc: In function 'int main()':
Main.cc:12:16: error: 'include' was not declared in this scope
 min = arr[i]; #include  
                ^
Main.cc:12:24: error: 'bits' was not declared in this scope
 min = arr[i]; #include  
                        ^
Main.cc:12:29: error: 'stdc' was not declared in this scope
 min = arr[i]; #include  
                             ^
Main.cc:13:1: error: expected primary-expression before 'using'
 using namespace std;  
 ^
Main.cc:15:11: error: a function-definition is not allowed here before '{' token
 int main(){  
           ^
Main.cc:59:1: error: expected '}' at end of input
 }
 ^
Main.cc:14:5: warning: unused variable 'arr' [-Wunused-variable]
 int arr[2000];  
     ^
Main.cc:10:9: warning: unused variable 'k' [-Wunused-variable]
 int min,k,t;  
         ^
Main.cc:10:11: warning: unused variable 't' [-Wunused-variable]
 int min,k,t;  
           ^
Main.cc:59:1: error: expected '}' at end of input
 }
 ^