9 lines
107 B
C++
Raw Permalink Normal View History

2024-09-09 08:57:42 +00:00
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
return 0;
}