⚠  JavaScript disabled
/* 404 page not found;
   this is not the page you are looking for */

#define NAME "woong.org"

int code = 404;
char message[] = "page not found";

int main()
{
    printf("%d %s: "NAME, code, message);
}