Se me ocurre hacerlo con javascript
:
Código:
<html>
<head>
<title> Dos líneas </title>
<script language="JavaScript">
function NombreDosLineas() {
document.getElementById('btnX').value = 'Pincha aquí y \n si puedo te contesto.'
}
</script>
</head>
<body onload="javascript:NombreDosLineas();">
<input type="button" id="btnX" value="Pincha aquí y \n si puedo te contesto.">
</body>
</html>