#!/usr/bin/perl
$args = join " ", @ARGV;
@chars = split '', $args;
print reverse @chars;



