document.write('<link rel="stylesheet" type="text/css" href="http://www.naslu.com/css/SyntaxHighlighter.css" />');
document.write('<textarea name="code" id="code" class="java" rows="1" cols="1">');
document.write('import java.io.*;\npublic class suma\n{\n    public static void main (String [] args)\n    {\n        InputStreamReader isr = new InputStreamReader(System.in);\n        BufferedReader br = new BufferedReader (isr);\n\n        try\n        {\n            System.out.print("Sumando 1 : ");\n            int s1 = Integer.parseInt(br.readLine());\n            System.out.print("Sumando 2 : ");\n            int s2 = Integer.parseInt(br.readLine());\n            int suma=s1+s2;\n            System.out.println ("La suma es " + s1 + "+" + s2 +"="+ suma);\n        }\n        catch (Exception e)\n        {\n            e.printStackTrace();\n        }\n    }\n}');
document.write('</textarea>');
document.write('<script languaje="javascript" type="text/javascript">');
document.write('dp.SyntaxHighlighter.ClipboardSwf = \'http://www.naslu.com/flash/clipboard.swf\';dp.SyntaxHighlighter.HighlightAll("code");');
document.write('</script>');
document.write('<a href="http://www.naslu.com" style="font-family:Arial;font-size:9px;color:#444444;font-weight:bold;">Powered by naslu.com</a>');