#include <stdio.h>
void print_square(int x[]);
int main(){
int i;
int base[5] = {31, 71, 21, 41, 51};
print_square(base); //λ°°μ΄ base μ i λ²μ§Έ μμλ₯Ό κ°κ° μ λ¬
return 0;
}
void print_square(int x[]){
for(int i=0; i<5; i++){
printf("%d", x[i] * x[i]);
}
}