fork download
  1. using namespace std;
  2. #include <bits/stdc++.h> ;
  3. int main() {
  4. // your code goes here
  5. map<int,int> m ;
  6. m[1] = 2 ;
  7. m[2] = 1 ;
  8. cout<<m.size() ;
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5472KB
stdin
Standard input is empty
stdout
2