input/code.cpp: In function 'int main()':
input/code.cpp:16:13: error: 'bitset' was not declared in this scope
16 | vector <bitset<3000>> b;
| ^~~~~~
input/code.cpp:5:1: note: 'std::bitset' is defined in header '<bitset>'; did you forget to '#include <bitset>'?
4 | #include <tuple>
+++ |+#include <bitset>
5 | using namespace std;
input/code.cpp:16:20: error: template argument 1 is invalid
16 | vector <bitset<3000>> b;
| ^~~~
input/code.cpp:16:20: error: template argument 2 is invalid
input/code.cpp:16:24: error: expected unqualified-id before '>' token
16 | vector <bitset<3000>> b;
| ^~
input/code.cpp:23:22: error: 'bb' was not declared in this scope
23 | bitset<3000> bb(a);
| ^~
input/code.cpp:24:9: error: 'b' was not declared in this scope
24 | b.push_back(bb);
| ^
input/code.cpp:27:18: error: 'bb' was not declared in th...