#include <stdio.h>

int main() {
	int arr[] = {5 , 7, 9 , 11 };
	for( int i = 0 ; i < 4; i++)
	{
		printf("%d", arr[i]);
	}
	return 0;
}
