0_0_39799040_2212.cpp: In function 'int main()':
0_0_39799040_2212.cpp:12:17: error: 'map' was not declared in this scope
12 | map<string,int> mp;
| ^~~
0_0_39799040_2212.cpp:6:1: note: 'std::map' is defined in header '<map>'; did you forget to '#include <map>'?
5 | #include<algorithm>
+++ |+#include <map>
6 | using namespace std;
0_0_39799040_2212.cpp:12:27: error: expected primary-expression before ',' token
12 | map<string,int> mp;
| ^
0_0_39799040_2212.cpp:12:28: error: expected primary-expression before 'int'
12 | map<string,int> mp;
| ^~~
0_0_39799040_2212.cpp:17:25: error: 'mp' was not declared in this scope
17 | mp[s]++;
| ^~
|