#include <stdio.h>

int main(void) {
	short int d;	
	int i;	
	for (i=32764; i<32773; i++){
		d=i;
		printf("i=%d, d=%d\n", i, d);
	}
	return 0;
}
