Write a program that displays the result of
LANGUAGE: Java
CHALLENGE:
Write a program that displays the result of 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9.1+2+3+4+5+6+7+8+9.
SOLUTION:
public static void main(String[] args){ System.out.println(1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9) }