/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <iostream>
using namespace std;
int main() {
cout << "Tableau 1" << endl;
int tab[6] = {15, 11, 10, 14, 18, 5};
for (int i = 0; i < 6; i++) {
cout << tab[i] << " ";
}
cout << endl;
return 0;
}