#include<stdio.h>intmain(){int m, n;printf("Enter no of rows and columns: ");scanf("%d%d",&m,&n);int a[m][n], b[m][n], c[m][n];// Add values to matrix Aprintf("ENTER VALUES OF MATRIX A\n");for(int i =0; i < m; i++){for(int j =0; j < n; j++){scanf("%d",&a[i][j]);}}// Add values of matrix Bprintf("\nENTER VALUES OF MATRIX B\n");for(int i =0; i < m; i++){for(int j =0; j < n; j++){scanf("%d",&b[i][j]);}printf("\n");}// Set C = A + Bfor(int i =0; i < m; i++){for(int j =0; j < n; j++){ c[i][j]= a[i][j]+ b[i][j];}}// Display Cfor(int i =0; i < m; i++){for(int j =0; j < n; j++){printf("%d ", c[i][j]);}printf("\n");}return0;}