int a = 10; int b = 20; int c = a + b; System.out.println(c);
int[] numbers = {1, 2, 3, 4, 5}; System.out.println(numbers[3]);
0 Comments