#include <stdio.h>

int main(void) {
	// your code goes here
	
	int x,y;
	int times = 0;
	for(x = 0, y = 0; (y != 10)&&(x < 5); x++) {
		printf("\r\n Times:%d, y=%d, x = %d", times, y, x);
		times++;
	}
	
	return 0;
}
