#include <stdio.h>

int main(void) {
	int i=2;
	while (i<=30) {
		printf("%d\n",i);
		i = i + 2;
	}

	return 0;
}
