Write a program that computes the sum of the first ten positive integers, 1 + 2 + . . . + 10. Hint: Write a program of the form public class Sum10 { public static void main(String[] args) { System.out.println( ); } }