import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner t = new Scanner(System.in);
int a = t.nextInt();
// for(int i=1;i<=a;i++) {
// for(int j=1;j<=i;j++) {
// System.out.print("*");
// }
// System.out.println();
// }
for(int i=a;i>=1;i--) {
for(int j=1;j<=i-1;j++) {
System.out.print(" ");
}
for(int j=1;j<=a;j++) {
System.out.print("*");
}
System.out.println();
}
}
}
*/
//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// int a = t.nextInt();
// for(int i=a;i>=1;i--) {
// for(int j=1;j<=i-1;j++) {
// System.out.print(" ");
// }
// for(int j=1;j<=a;j++) {
// System.out.print("*");
// }
// System.out.println();
// }
// }
//}
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner t = new Scanner(System.in);
String[] arr = t.nextLine().split(" ");
int h = Integer.valueOf(arr[0]);
int k = Integer.valueOf(arr[1]);
char d = arr[2].charAt(0);
if(d=='R') {
for(int i=h;i>=1;i--) {
for(int j=1;j<=i-1;j++) {
System.out.print(" ");
}
for(int j=1;j<=k;j++) {
System.out.print("*");
}
System.out.println();
}
}
else if(d=='L') {
for(int i=1;i<=h;i++) {
for(int j=1;j<=i-1;j++) {
System.out.print(" ");
}
for(int j=1;j<=k;j++) {
System.out.print("*");
}
System.out.println();
}
}
}
}