cna/main.cpp

10 lines
108 B
C++
Raw Permalink Normal View History

2025-02-22 21:32:25 +01:00
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}