class Program { public static void main(String[] argv) { int[] tomb = {3, 8, 2, 4, 5, 1, 6}; int osszeg = 0; for(int i=0; i<7; i++) osszeg = osszeg + tomb[i]; System.out.println(osszeg); } }