// Coded by oxagast
// For Hope XIV
// July 22 2022 (in epoch) it will print Happy Hope!

#include <iostream>
#include <ctime>
#include <unistd.h>
#include <stdio.h>

int main()
{
  for(;;) {
    time_t ttime = time(0);
    sleep(5);
    // July 22 2022 12am EST in Unix Epoc time is 1658462400
    if(ttime > 1658462400) {
      break;
    }
  }
  std::cout << "Happy Hope XIV!" << std::endl;
  return 0;
}
