I don t see where is the mistake. Thank you
package fr.codegym.task.task07.task0705;
import java.io.BufferedReader;
import java.io.InputStreamReader;
/*
Un grand tableau et deux petits
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader reader = new BufferedReader (new InputStreamReader(System.in));
int []tableau = new int [20];
int []tableau2 = new int [10];
int []tableau3 = new int [10];
for (int i = 0; i < 20; i++)
{
tableau [i] = Integer.parseInt(reader.readLine());
}
for ( int i = 0; i < 10; i++ )
{
tableau [i] = tableau2 [i] ;
}
for (int i = 10; i < 20; i++)
{
tableau [i] = tableau3 [i] ;
System.out.println(tableau3 [i] );
}
}
}
//écris ton code ici