#include #include int main(int argc, char **argv) { unsigned int i; for (i = 0; i < atoi(argv[1]); i++) fwrite(&i, 2, 1, stdout); return 0; }