#include <conio.h>
int
main(
void
)
{
clrscr();
gotoxy(35, 12);
cprintf(
"Hello world"
);
getch();
return
0;
}