Edit in JSFiddle

var primero = document.getElementById("a").value,
    segundo = document.getElementById("b").value,
    tercero = document.getElementById("c"),
    primeraLetra = primero[0].toLowerCase(),
    primerApellido = segundo.substring(0, segundo.indexOf(" ")).toLowerCase(),
    final = primeraLetra + primerApellido;

tercero.value = final;
<input type = "text" id = "a" value = "Miguel Ignacio" />
<input type = "text" id = "b" value = "Saavedra Campos" />
<input type = "text" id = "c" />