Problem2149--if the matrix is symmetric

2149: if the matrix is symmetric

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 232  Solved: 45
[Submit] [Status] [Web Board] [Creator:]

Description

Create a dynamic two-dimensional array of m*n, input m*n integers, use the pointer to find if the matrix is symmetric. Print

Input

Given m*n integers

Output

Output Yes or No

Sample Input Copy

2*2	7 5 4 2

Sample Output Copy

No

Source/Category

195