#include <stdio.h>

int main(void)
{
	if (1)
	{
		printf("a\n");
		break;
		printf("b\n");
	}
	
	return 0;
}