#include <iostream>
#include <ctime>

int main()
{
    std::time_t the_beginning_of_time {} ;
    std::cout << "earliest timepoint that can be handled by the library is:\n"
               << std::ctime( &the_beginning_of_time ) ;
}
