#include<iostream>#include<string>intmain(){
int age;
std::string name;
std::cin >> age;
std::getline(std::cin, name);
if (std::cin)
{
std::cout << "My cat is " << age << " years old and their name is " << name << std::endl;
}
}
Input:
"10""Mr. Whiskers"
Output:
"My cat is 10 years old and their name is "