#include using namespace std;int main(){int n, m;float M[100][100], R[100];cout << "vvedite n && m" << endl;cin >> n >> m;for(int i = 0; i < n; i++) { for(int j = 0; j < m; j++) { cin >> M[i][j]; }}for(int i = 0; i < n; i++) { float a = 0.; for(int j = 0; j < m; j++) { a += M[i][j]; } R[i] = float(a) / m;}for(int i = 0; i < n; i++) { cout << R[i] << endl;}}