#include using namespace std; int main() { int myArray[10][10]; for (int i = 0; i <=9; ++i){ for (int t = 0; t <=9; ++t){ myArray[i][t] = i+t; } } for (int i = 0; i <=9; ++i){ for (int t = 0; t <=9; ++t){ cout << myArray[i][t]; } } system("pause"); }