Problem #853 CORE JAVA PROGRAMMING

Write a C++ program to create a class called "Person" with a name and age attribute. Create two instances of the "Person" class, set their attributes using the constructor, and print their name and age.

Your Solution