Introduction
In this challenge, you will create a C++ program that manages a student roster using the std::map container from the C++ Standard Template Library (STL). The goal is to practice using key-value data structures to efficiently track and manage student information as a school administrator.
The program should allow you to add new students with their names and ages, retrieve a student's age by their name, and display all the student records in the roster.



