#include "Time.h" #include using namespace std; int main() { Time t; cout << "Enter a time(hh:mm:ss ampm): "; cin >> t; cout <<"You entered: " << t << endl; return 0; }