#include <iostream>
#include <map>
using namespace std;

int main() {
	std::map<std::string, double> counts;
	counts["cats"] = 5;
	counts["dogs"] = 77;
	
	for( auto it = counts.begin(); it != counts.end(); it++) {
	    std::cout << "There are " << it->second << ' ' << it->first << std::endl;
	}
	return 0;
}