/* Helloプログラム */

#include <stdio.h>
 
main()
{
	int count ;
	
	for ( count = 1 ; count <= 10 ; count ++ ) {
		
		if ( (count % 2) == 0 ) {
	        printf("偶");
	  
    	} else {
	    	printf("奇");
    	}
	}
	
}