/* Helloプログラム */

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