#include <windows.h>

int main(int argc, char *argv[])
{
    MessageBox(NULL, "Hello, world!", "Hello, world!", MB_OK);
	
    return 0;
}