//-------------------------------------------------------
//â—Žinput.c
#include "hd.h"
static int const in_data[SIZE] = {2, 3, 6, 8, 4, 10, 5, 7, 9, 1};
int input(int data[], int size) {
int i;
for( i = 0; i < size; i += 1) {
data[i] = in_data[i];
}
return 0;
} // end of input