#include <chrono>
#include <ctime>
#include <iostream>
#include <thread>

using namespace std;
using namespace chrono;

int main()
{
	auto start = high_resolution_clock::now();
	this_thread::sleep_for(seconds(1));
	auto stop = high_resolution_clock::now();
	auto result = stop - start;
	time_t t = duration_cast<seconds>(result).count();
	cout << ctime(&t) << endl;
	return 0;
}