0_0_39269244_17944.cpp: In function 'int main()':
0_0_39269244_17944.cpp:12:5: error: 'unordered_map' was not declared in this scope
12 | unordered_map<int,int>mp;
| ^~~~~~~~~~~~~
0_0_39269244_17944.cpp:8:1: note: 'std::unordered_map' is defined in header '<unordered_map>'; did you forget to '#include <unordered_map>'?
7 | #include<cstdio>
+++ |+#include <unordered_map>
8 | using namespace std;
0_0_39269244_17944.cpp:12:19: error: expected primary-expression before 'int'
12 | unordered_map<int,int>mp;
| ^~~
0_0_39269244_17944.cpp:14:9: error: 'mp' was not declared in this scope
14 | mp.clear();
| ^~
|