#include <iostream>
#include <map>
using namespace std;
int main() {
map<string, int> people = { {"Bill", 19}, {"Steve", 32}, {"Elon", 26} };
cout << people.size();
return 0;
}