#include #include using namespace std; int main() { //Write a program that print a hospital //bracelet. It prompts the user for ID //Name of Patient, DOB of Patient string idNumber; //object string class //#include //any sequence of chars string lastName, firstName; int month, day, year; cout << "Enter ID number: "; cin >> idNumber; cout << "Enter first Name: "; cin >> firstName; cout << "Enter last Name: "; cin >> lastName; cout << "Enter month day year of birth" << " separated by spaces: "; cin >> month >> day >> year; //printing out bracelet cout << idNumber << '\t' << '\t' << lastName << ", " << firstName << endl; cout << month << '/' << day << '/' << year << endl; }​