document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //Sum10.java    MrG 2011.0915
  2. public class Sum10
  3. {
  4.     public static void main(String[] args)
  5.     {
  6.         System.out.print("1+2+3+4+5+6+7+8+9+10 = ");
  7.         System.out.println(1+2+3+4+5+6+7+8+9+10);
  8.     }
  9. }
');