#include <stdio.h>
#include <stdarg.h>
#define NPRINT(n, fmt,...) do { \
	int i; \
	typeof(n) _n = n; \
	for(i=0; i<_n; i++) \
		printf("n:%d " fmt, i, ##__VA_ARGS__); \
	} while(0)

int main(int x, char **argv) {
	if (x<2) return 1;
	x=atoi(argv[1]);
	if (x>15)    NPRINT(x=15, "More: %s\n", argv[0]);
	else if(x<1) NPRINT(x=1,"Less than!\n");
	else         NPRINT(x--, "OK\n");
	return 0;
}

	
