/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// usar locale US para que o separador decimal seja o ponto
        Scanner sc = new Scanner(System.in).useLocale(Locale.US);
        System.out.println("Entre com o numero de notas: ");
        int quantidadeNotas = sc.nextInt();

        double notas[] = new double[quantidadeNotas];

        for (int i = 0; i < quantidadeNotas; i++){
            System.out.println ("Entre com a nota [" + (i + 1) + "]: ");
            notas[i] = sc.nextDouble();
        }

        for (double nota: notas){
            System.out.println(nota);
        }
    }
}