#include <stdio.h>

int main(int c,char **v){
	int i=0;
	while(1){
		printf("%d\n",i++);
		if(i==5){
			break;
		}
	}
}

