#include <stdio.h>
 
int main(void) {
	// your code goes here
	int i;
	for(i=0;i<=99;i++)
	{
		if(i/2==0) printf(" So chan: %d ",i);
	}
	return 0;
}