/**
 * Created by IntelliJ IDEA.
 * User: gloyaute
 * Date: 10 11 2011
 * Time: 20:06:22
 * To change this template use File | Settings | File Templates.
 */

public class Test {

    public static void main(String[] args) {
        String first = args[0];
        String second = args[1];
        String last = args[2];

        String s = first;
        s = s +  ' ';
        s = s + second;
        s = s + ' ';
        s = s + last;
        System.out.println(first + ' ' + second + ' ' + last);
    }
}
