No amigo alguna otra cosa estoy haciendo mal porque a pesar de que agregue el JQuery, y despues el jquery-latest igualmente no me funciona aquí te adjunto como lo probé
  
Código:
 <!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js">
      $(document).ready(function () {
          $("#texto1").keyup(function () {
              var value = $(this).val();
              $("#texto2").val(value);
          });
      });
</script>
</head>
<body>
  <input type="text" id="texto1" value=""/><br>
 <input type="text" id="texto2" value=""/>
</body>
</html>