0_0_36677377_13316.cpp:35:1: error: 'map' does not name a type
map<ull,int>mp;
^
0_0_36677377_13316.cpp: In function 'int main()':
0_0_36677377_13316.cpp:42:1: error: 'mp' was not declared in this scope
mp.clear();
^
0_0_36677377_13316.cpp:56:1: error: 'map' was not declared in this scope
map<ull,int>::iterator it;
^
0_0_36677377_13316.cpp:33:13: error: expected primary-expression before 'unsigned'
#define ull unsigned long long
^
0_0_36677377_13316.cpp:56:5: note: in expansion of macro 'ull'
map<ull,int>::iterator it;
^
0_0_36677377_13316.cpp:57:5: error: 'it' was not declared in this scope
for(it=mp.begin();it!=mp.end();it++)
^
|