public class Salutacio {
    // Inicialitzem l'entrada i sortida de dades 
    private static inout io = new inout(); 

    public static void main (String args[]) throws IOException {
	io.write ("Escriu el teu nom: ");
	String s = io.readline();
	io.writeln ("Benvingut a la programacio en Java, "+s);
    }
}
