#include <err.h>
#include <stdio.h>

int
main(int argc, char **argv)
{
if (argc > 1)
while (puts(argv[1]) != EOF)
;
else
while (puts("orz") != EOF)
;
err(1, "stdout");
/*NOTREACHED*/
}