public class e1
{
public static void main (String[]args)
{

 int [] a = {5,10,9,6,54,2};
 int m =  a.length;
 int ans = 0;
 int w = 0;
 int j;



	System.out.println("********************************************");
	for (int index = 0; index < m; index++)
		{
			System.out.println(" " + a[index]);


		}
 	System.out.println();
	System.out.println("The array has " + m + " figures");
 	System.out.println();

 	for (int index = 0; index < m; index++)

 		{
			ans = ans + a[index];
		}

	System.out.println("The sum of all the number of the array is: " + ans);
	System.out.println();



	for (j=1; j<m; j++)
	{

		if (a[j] > a[w])
		{
			w = j;
		}
	}



	System.out.println("The biggest number in the array is " + a[w]);

	










}
}
