Zdobądź sumę liczb całkowitych na liście Java

int sum = list.stream().mapToInt(Integer::intValue).sum();
Meti