#include
#include
#include
#include
#include
#pragma GCC optimize("Ofast")
using ll = long long;
using ld = long double;
using namespace std;
const ll n = 4, m = 5;
ll a[n][m];
void print(){
for(ll i = 0; i < n; i++){
for(ll j = 0; j < m; j++)
cout << a[i][j] << " ";</strong>
cout << "\n";</strong>
}
cout << "\n";</strong>
}
signed main() {
/** матрица + матрица квадратов */
for(ll i = 0; i < n; i++)
for(ll j = 0; j < m; j++)
cin >> a[i][j];
print();
for(ll i = 0; i < n; i++)
for(ll j = 0; j < m; j++)
a[i][j] *= a[i][j];
print();
/** матрица + матрица квадратов */
srand(time(NULL));
/** рандомная матрица + матрица удвоения */
for(ll i = 0; i < n; i++){
for(ll j = 0; j < m; j++){
a[i][j] = rand() % 10;
cout << a[i][j] << " ";</strong>
a[i][j] *= 2;
}
cout << "\n";</strong>
}
cout << "\n";</strong>
print();
/** рандомная матрица + матрица удвоения */
}