fork download
  1. #include <map>
  2. #include <iostream>
  3. using namespace std;
  4. map<int,int> m1;
  5. map<int,int> m2;
  6.  
  7. int main() {
  8. cout<<(m1.end() == m2.end())<<endl;
  9. }
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
0