/*
 *	Stupid compilers will generate the same code on the end of both
 *	the then-part and the else-part. Clever ones will make the then-part
 *	jump into the end of the else-part.
 */

int literal, npages, nblocks;

common()
{
	if (!literal) {
		printf("%d", npages);
	} else {
		printf("%dK", nblocks);
	}
	exit(0);
}
