This nifty website gives us the holiday gift of daily code challenges. Here are my solutions. https://adventofcode.com/
#include <iostream>
int main() {
int repeatJollySayingCount = 3;
for(int i = 0; i < repeatJollySayingCount; i++) {
std::cout << "We wish you a merry christmas!" << std::endl;
}
std::cout << "And a happy new year!"
}