advent-of-code/2024/day-01/main.cpp
2024-12-03 20:27:10 +01:00

9 lines
108 B
C++

#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}