class JSample5_1{ public static void main(String args[]){ int n[] = {18, 29, 36, 12}; for (int i = 0; i < 4; i++){ System.out.println(n[i]); } } }