biochips.cpp: In function 'int main()':
biochips.cpp:27:2: error: 'ios' has not been declared
27 | ios::sync_with_stdio(0);cin.tie(0);
| ^~~
biochips.cpp:27:26: error: 'cin' was not declared in this scope
27 | ios::sync_with_stdio(0);cin.tie(0);
| ^~~
biochips.cpp:5:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
4 | #include <algorithm>
+++ |+#include <iostream>
5 | #include <vector>
biochips.cpp:42:5: error: 'cout' was not declared in this scope
42 | cout<<dp[m%2][1];
| ^~~~
biochips.cpp:42:5: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?