#include "Appointment.h" #include using namespace std; int main() { Appointment myAp; cout << "Enter your appointment (date, time, description):"; cin >> myAp; cout << "You entered the following data: "; cout << myAp; return 0; }