#include <stdio.h>

int main(void) {
	int arr[2];
    memset(arr, 5, sizeof(int) * 2);
    printf("%d %d", arr[0], arr[1]);
	return 0;
}
