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

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;
}
