import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] score = new int[10];
int i=0;
while(sc.hasNextInt()) {
score[i++] = sc.nextInt();
}
for(int j=0; j < score.length; j++) {
System.out.print(score[j] + " ");
}
}
}