#include <stdio.h>
int main(void) {
    int i;
	for(i = 0; i < 5; i++){
        int x = i;
        printf("%d \n", x);
    }
	return 0;
}
