#include using namespace std; #include "Time.h" int main() { Time t1; Time t2; cin >> t1 >> t2; cout << t1 << " is " << (t1 < t2 ? "" : "not ") << "less than " << t2 << endl; return 0; }