/******************************************************************************
Welcome to code of Lập trình - Điện tử
Series: C++
Author: Nghĩa Taarabt
*******************************************************************************/
#include <iostream>
using namespace std;
// declaring a function
void greet()
{
cout << "Hello World!";
}
int main()
{
// calling the function
greet();
return 0;
}