#include
int main ()
{
INITSCR ();
Move (5,15);
Printw ("% s", "Hello World!");
Refresh ();
Sleep (4);
Endwin ();
Exit (exit_success);
}