Jumlah ArrayList Java 8

int total = numbers.stream().mapToInt(i -> i.intValue()).sum();
		System.out.print(total);
Ugliest Unicorn