Having solved the match issue, Mirko faced another challenging problem. His mom ordered him to read an article about the newest couples on the Croatian show-biz scene in the "Moja Tajna" magazine. The article is written in a very small font size which Mirko cannot read. Luckily, Mirko has a scanner in the closet which will enlarge the article for him.
The article is a matrix of characters with .
(period). Mirko's scanner supports two parameters,
Mirko realized his scanner's software no longer works so he needs your help.
Input Specification
The first row contains four integers,
Each of the following
Output Specification
The output should be a matrix of characters with
Sample Input 1
3 3 1 2
.x.
x.x
.x.
Sample Output 1
..xx..
xx..xx
..xx..
Sample Input 2
3 3 2 1
.x.
x.x
.x.
Sample Output 2
.x.
.x.
x.x
x.x
.x.
.x.
Comments