mirror of
https://gitlab.com/comunic/comunicterm
synced 2024-11-16 10:31:06 +00:00
10 lines
126 B
C++
10 lines
126 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
cout << "Comunic Term (c) Pierre HUBERT" << endl;
|
|
return 0;
|
|
}
|