prog.cpp: In function 'int main()':
prog.cpp:14:6: error: 'unordered_map' was not declared in this scope
unordered_map<string ,int> m;
^
prog.cpp:14:27: error: expected primary-expression before ',' token
unordered_map<string ,int> m;
^
prog.cpp:14:28: error: expected primary-expression before 'int'
unordered_map<string ,int> m;
^
prog.cpp:16:6: error: 'unordered_set' was not declared in this scope
unordered_set<string> st;
^
prog.cpp:16:26: error: expected primary-expression before '>' token
unordered_set<string> st;
^
prog.cpp:16:28: error: 'st' was not declared in this scope
unordered_set<string> st;
^
prog.cpp:27:14: error: 'm' was not declared in this scope
m[p]--;
^
prog.cpp:33:10: error: 'm' was not declared in this scope
m[s]++;
^