#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
// Hàm tính số thứ tự của một hoán vị
int permutationToIndex(const vector<int>& perm) {
int n = perm.size();
vector<bool> used(n + 1, false);
int index = 0;
long long factorial = 1;
for (int i = 1; i <= n; ++i) {
factorial *= i; // Tính giai thừa
}
for (int i = 0; i < n; ++i) {
factorial /= (n - i); // Giảm cấp giai thừa
// Đếm số lượng phần tử nhỏ hơn perm[i] mà chưa được sử dụng
int rank = 0;
for (int j = 1; j < perm[i]; ++j) {
if (!used[j]) {
rank++;
}
}
// Cộng dồn vào chỉ số
index += rank * factorial;
// Đánh dấu phần tử này đã được sử dụng
used[perm[i]] = true;
}
return index + 1; // Chỉ số bắt đầu từ 1
}
// Hàm tìm hoán vị từ số thứ tự
vector<int> indexToPermutation(int n, int y) {
vector<int> permutation;
vector<int> elements(n);
for (int i = 0; i < n; ++i) {
elements[i] = i + 1;
}
long long factorial = 1;
for (int i = 1; i <= n; ++i) {
factorial *= i; // Tính giai thừa
}
y--; // Chuyển sang chỉ số bắt đầu từ 0
for (int i = 0; i < n; ++i) {
factorial /= (n - i); // Giảm cấp giai thừa
// Tìm chỉ số của phần tử cần chọn
int index = y / factorial;
permutation.push_back(elements[index]);
elements.erase(elements.begin() + index);
// Cập nhật y
y %= factorial;
}
return permutation;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
int n;
vector<int> perm;
while (cin >> n) {
perm.push_back(n);
}
int y;
y = perm[perm.size() - 1];
perm.pop_back();
// Tính số thứ tự x của hoán vị
int x = permutationToIndex(perm);
cout << x << endl;
n = perm.size();
// Tìm hoán vị từ số thứ tự y
vector<int> result = indexToPermutation(n, y);
for (int num : result) {
cout << num << " ";
}
cout << endl;
return 0;
}