You need to find all the cavities on the map and depict them with the uppercase character X.
The first line contains an integer, n, denoting the size of the map. Each of the following n lines contains n positive digits without spaces. Each digit (1-9) denotes the depth of the appropriate area.
1≤n≤100Output n lines, denoting the resulting map. Each cavity should be replaced with character X.
1112
1X12
18X2
1234