/**************************************************
filename :k.cpp
author :maksyuki
created time :2017/12/2 10:33:51
last modified :2017/12/2 11:15:31
file location :C:\Users\abcd\Desktop\TheEternalPoet
***************************************************/
#pragma comment(linker, "/STACK:102400000,102400000")
#include <set>
#include <bitset>
#include <list>
#include <map>
#include <stack>
#include <queue>
#include <deque>
#include <string>
#include <vector>
#include <ios>
#include <iostream>
#include <fstream>
#include <sstream>
#include <iomanip>
#include <algorithm>
#include <utility>
#include <complex>
#include <numeric>
#include <functional>
#include <cmath>
#include <ctime>
#include <climits>
#include <cstdarg>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <cassert>
using namespace std;
#define CFF freopen ("in", "r", stdin)
#define CFO freopen ("out", "w", stdout)
#define CPPFF ifstream cin ("in")
#define CPPFO ofstream cout ("out")
#define DB(ccc) cout << #ccc << " = " << ccc << endl
#define DBT printf("time used: %.2lfs\n", (double) clock() / CLOCKS_PER_SEC)
#define PB push_back
#define MP(A, B) make_pair(A, B)
typedef long long LL;
typedef unsigned long long ULL;
typedef double DB;
typedef pair <int, int> PII;
typedef pair <int, bool> PIB;
const int INF = 0x7F7F7F7F;
const int MOD = 1e9 + 7;
const double EPS = 1e-10;
const double PI = 2 * acos (0.0);
const int maxn = 66;
char g[maxn][maxn];
const char v[]= {'A', 'B', 'L', 'R'};
const int dx[] = {-1, 1, 0, 0};
const int dy[] = {0, 0, -1, 1};
bool check(int x, int y) {
if(x >= 0 && x <= 4 && y >= 0 && y <= 4) return true;
return false;
}
int main()
{
#ifdef LOCAL
CFF;
//CFO;
#endif
int id = 1;
while(fgets(g[0], maxn, stdin)) {
if(g[0][0] == 'Z') break;
for(int i = 1; i < 5; i++) fgets(g[i], maxn, stdin);
int c;
bool is_valid = true;
int px = 0, py = 0;
for(int i = 0; i < 5; i++)
for(int j = 0; j < 5; j++)
if(g[i][j] == ' ') px = i, py = j;
while((c = fgetc(stdin)) != '0') {
for(int i = 0; i < 4; i++) {
if(c == v[i]) {
int tmpx = px + dx[i], tmpy = py + dy[i];
if(check(tmpx, tmpy)) {
swap(g[tmpx][tmpy], g[px][py]);
px = tmpx, py = tmpy;
}
else is_valid = false;
}
}
}
if(id > 1) puts("");
printf("Puzzle #%d:\n", id++);
if(!is_valid) puts("This puzzle has no final configuration.");
else {
for(int i = 0; i < 5; i++) {
for(int j = 0; j < 5; j++) {
if(!j) printf("%c", g[i][j]);
else printf(" %c", g[i][j]);
}
puts("");
}
}
fgets(g[0], maxn, stdin);
}
return 0;
}