| Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Question by Ibrahim Mesecan.
 
 
 esreveR Triangle Draw a reverse triangle with the given size (n)
and given chars. When drawing the triangle, at
the beginning of everyline, give some space, such that
 
Then, every line starts with the first char and
it's followed by the second, and so on.the first line will have n-1 space and then 1 charthe second line will have n-2 spaces and then 2 charsthe third line will have n-3 spaces and then 3 charsetc. 
Question:
Write a program, that is going to take the size of 
triangle and two chars. And draw the described triangle.
 
Input specification  You will be given one integer (n) and two chars
0 ≤ n ≤ 100. The chars are 26 uppercase or lowercase
English characters.
 Output specification  Draw the described triable.
 
  
| Sample Input I 
 
5 b n 
 | Sample Input II 
 
7 x t 
 
 |  
| Sample Output I 
 
    bbn
 bnb
 bnbn
 bnbnb
 
 | Sample Output II 
 
      xxt
 xtx
 xtxt
 xtxtx
 xtxtxt
 xtxtxtx
 
 |  
 Для отправки решений необходимо выполнить вход.
 
 
 |