Answer:
"""
matrix, represents the elements in each cell of the matrix of size N*M.
"""
def funcHopSkipJump(matrix):
# Write your code here
return
def main():
#input for matrix
matrix = []
matrix_rows,matrix_cols = map(int, input().split())
for idx in range(matrix_rows):
matrix.append(list(map(int, input().split())))
result = funcHopSkipJump(matrix)
print(result)
if __name__ == "__main__":
main()
Step-by-step explanation:
"""
matrix, represents the elements in each cell of the matrix of size N*M.
"""
def funcHopSkipJump(matrix):
# Write your code here
return
def main():
#input for matrix
matrix = []
matrix_rows,matrix_cols = map(int, input().split())
for idx in range(matrix_rows):
matrix.append(list(map(int, input().split())))
result = funcHopSkipJump(matrix)
print(result)
if __name__ == "__main__":
main()