#include int main() { int tomb[] = {3, 8, 5, 6, 2, 9 }; int i; for(i=0; i<6; i++) { printf("%d\n", tomb[i]); } }