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

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int[] a = new int[10];
        for (int i = 0; i < 10; i++) {
            a[i] = sc.nextInt();
        }
        for (int x: a) {
            System.out.println(x);
        }
    }
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: