#include using namespace std; int main() { string lastname, firstname; int age; cout<<"Enter your Last name, First name, and age in that order"; // this is a shorter way of saying // cin>>lastname; // cin>>firstname; // cin>>age; cin>>lastname>>firstname>>age; cout<<"You entered:\n"; cout<<"Last name: "<