#include <stdio.h>
int main()
{
// Deklaration
int a[10][10], z, s;
// Init
for (z=0; z<10; z++) {
for (s=0; s<10; s++) {
a[z][s] = z*10 + s;
}
}
// Ausgabe
for (z=0; z<10; z++) {
for (s=0; s<10; s++) {
printf("%d\t", a[z][s]);
}
printf("\r\n");
}
return 0;
}