/* Helloプログラム */

#include <stdio.h>
 
main()
{
	int count ;
	
	for ( count = 1 ; count <= 10 ; count ++ ){
		
		if ( (count % 3) == 0){
			printf("@");
			
		}else {
			printf("%d" , count);
		}
	}
}