#!perl use strict; use warnings FATAL => qw(all); =prompt Write a script to accept two integers n (>=1) and k (>=1). It should print the kth permutation of n integers. For more information, please follow the wiki page. For example, n=3 and k=4, the possible permutation sequences are listed below: 123 132 213 231 312 321 The script should print the 4th permutation sequence 231. =cut use Algorithm::Combinatorics qw(permutations); use Getopt::Std; my %options=(); getopts("n:k:", \%options); die "Usage: