global $args;

for($i = 1; $i < count($args); $i++) {
   print($args[$i]);
   if(($i+1) < count($args)) {
      print(" ");
   }
}
print("\n");
