int a[5];
int main() {
int i = 0;
while (i < 5) {
a[i] = i * i;
i = i + 1;
}
i = 0;
putint(a[i]);
putch(32);
putch(10);
return 0;